-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Updated cerebral-provider - Execute requests in sequence by default - Can you concurrent: true to do in parallel - `connections` in state now has a `connected` boolean flag - connect() now returns a token, connection_id, or an error.
- Loading branch information
1 parent
511f923
commit c97b172
Showing
8 changed files
with
2,705 additions
and
1,752 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"presets": [ | ||
[ | ||
"@babel/preset-env", | ||
{ | ||
targets: { | ||
esmodules: true | ||
} | ||
} | ||
] | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
node_modules | ||
index.js | ||
sequences.js | ||
state.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,37 @@ | ||
{ | ||
"name": "@oada/cerebral-module", | ||
"version": "3.0.5", | ||
"version": "3.0.6", | ||
"description": "oada cerebral module", | ||
"main": "./index.js", | ||
"scripts": { | ||
"test": "mocha -w --require babel-polyfill --compilers js:babel-register test/**/*.test.js", | ||
"build": "babel src --out-dir ./ --presets=env", | ||
"test": "mocha -w --require @babel/register test/**/*.test.js", | ||
"build": "babel src --out-dir ./", | ||
"prepare": "npm run build", | ||
"prettier": "prettier --write 'src/**/*.js'", | ||
"build-watch": "babel --watch src --out-dir ./ --presets=env", | ||
"build-watch": "babel --watch src --out-dir ./", | ||
"dev": "cpx \"*.js\" $APP_DIR/node_modules/@oada/cerebral-module/ --watch --verbose" | ||
}, | ||
"author": "oada", | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
"@oada/cerebral-provider": "^3.0.4", | ||
"assert": "^1.4.1", | ||
"babel-polyfill": "^6.26.0", | ||
"babel-preset-env": "^1.7.0", | ||
"babel-preset-latest": "^6.24.1", | ||
"babel-preset-stage-3": "^6.24.1", | ||
"babel-register": "^6.26.0", | ||
"chai": "^4.1.2", | ||
"@oada/cerebral-provider": "^3.0.6", | ||
"debug": "^4.1.0", | ||
"fs": "^0.0.1-security", | ||
"lodash": "^4.17.15", | ||
"url": "^0.11.0" | ||
}, | ||
"peerDependencies": { | ||
"cerebral": "^5.1.1" | ||
}, | ||
"devDependencies": { | ||
"babel-cli": "^6.26.0", | ||
"prettier": "2.0.2" | ||
"@babel/cli": "^7.8.4", | ||
"@babel/core": "^7.9.0", | ||
"@babel/preset-env": "^7.9.5", | ||
"@babel/register": "^7.9.0", | ||
"cerebral": "^5.1.1", | ||
"mocha": "^7.1.1", | ||
"prettier": "2.0.2", | ||
"chai": "^4.1.2", | ||
"assert": "^1.4.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
It seems that this file (state.js) is missing in the repo?