Skip to content

Commit

Permalink
### 3.7.12
Browse files Browse the repository at this point in the history
* Change bundle system to allow multiple chains at the same time such as
`node app kado bundle -l -s -m` which is equivalent of `node app kado bundle`
* Latest dependencies.
  • Loading branch information
nullivex committed Apr 18, 2019
1 parent 284ba27 commit b9355d3
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 21 deletions.
7 changes: 6 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
### 3.8.0 (planned)

### 3.7.12 (staged)
### 3.7.13 (staged)

### 3.7.12
* Change bundle system to allow multiple chains at the same time such as
`node app kado bundle -l -s -m` which is equivalent of `node app kado bundle`
* Latest dependencies.

### 3.7.11
* Fix npm complaint about `acorn` module (for some reason
Expand Down
16 changes: 10 additions & 6 deletions kado_modules/kado/bin/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -415,12 +415,16 @@ program.command('bundle')
})
.map((ifaceName)=>{
let promises = []
if(cmd.local){
promises.push(bundleInterface(ifaceName,localConfigFile))
} else if(cmd.module){
promises.push(bundleInterface(ifaceName,moduleConfigFile))
} else if(cmd.system){
promises.push(bundleInterface(ifaceName,systemConfigFile))
if(cmd.local || cmd.module || cmd.system){
if(cmd.local){
promises.push(bundleInterface(ifaceName,localConfigFile))
}
if(cmd.module){
promises.push(bundleInterface(ifaceName,moduleConfigFile))
}
if(cmd.system){
promises.push(bundleInterface(ifaceName,systemConfigFile))
}
} else {
promises.push(bundleInterface(ifaceName,localConfigFile))
promises.push(bundleInterface(ifaceName,moduleConfigFile))
Expand Down
22 changes: 11 additions & 11 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
Expand Up @@ -2,7 +2,7 @@
"author": "Bryan Tong <bryan@nullivex.com>",
"name": "kado",
"description": "Web Application System",
"version": "3.7.11",
"version": "3.7.12",
"homepage": "https://kado.org",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -92,13 +92,13 @@
"recursive-readdir": "^2.2.2",
"request": "^2.88.0",
"rimraf": "^2.6.3",
"sequelize": "^5.5.0",
"sequelize": "^5.7.0",
"sequelize-datatable": "^2.0.0",
"serve-static": "^1.13.2",
"squire-rte": "^1.9.0",
"terser-webpack-plugin": "^1.2.3",
"to-mark": "^1.1.5",
"tui-editor": "^1.3.3",
"tui-editor": "^1.4.0",
"uriname": "^0.1.1",
"validator": "^10.11.0",
"webpack": "^4.30.0",
Expand Down

0 comments on commit b9355d3

Please sign in to comment.