Skip to content

Commit

Permalink
Merge branch 'release/v0.17.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
ClassicOldSong committed Jul 1, 2023
2 parents 6026d1c + ee8d427 commit fdd6293
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 52 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ const App = class extends Tpl {
})

return {
count: 'You have not clicked.'
count: 'You have not clicked.',
btnText: 'Click Me!'
}
}
Expand Down
5 changes: 4 additions & 1 deletion config/rollup.base.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ export default {
esbuild({
target: 'es2015',
sourceMap: true,
minify: isProduction
minify: isProduction,
define: {
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV || 'development')
}
})
]
}
92 changes: 46 additions & 46 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ef.js",
"version": "0.17.2",
"version": "0.17.3",
"description": "(maybe) An elegant HTML template engine & basic framework",
"main": "dist/ef.min.js",
"module": "src/ef.js",
Expand Down Expand Up @@ -34,15 +34,15 @@
"chalk": "^5.3.0",
"chokidar": "^3.5.3",
"cross-env": "^7.0.3",
"eslint": "^8.43.0",
"eslint": "^8.44.0",
"jsdoc": "^4.0.2",
"rollup": "^3.26.0",
"rollup-plugin-browsersync": "^1.3.3",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-progress": "^1.1.2"
},
"dependencies": {
"ef-core": "^0.17.2",
"ef-core": "^0.17.3",
"eft-parser": "^0.16.5"
}
}
2 changes: 1 addition & 1 deletion src/ef.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const mixStr = (strs, ...vars) => {
*/
const t = (...args) => create(mixStr(...args))

let coreVersion = '0.17.2'
let coreVersion = '0.17.3'

if (process.env.NODE_ENV !== 'production') {
coreVersion = `${coreVersion}+debug`
Expand Down

0 comments on commit fdd6293

Please sign in to comment.