Skip to content

Commit

Permalink
v10.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rjrodger committed Sep 26, 2020
1 parent eb1a0a5 commit b003962
Show file tree
Hide file tree
Showing 4 changed files with 332 additions and 338 deletions.
2 changes: 1 addition & 1 deletion entity.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ module.exports.preload = function entity(context) {
var opts = seneca.util.deepextend({}, default_opts, context.options)

var store = Store()

// Removes dependency on seneca-basic
// TODO: deprecate this
seneca.add('role:basic,cmd:generate_id', Common.generate_id)
Expand Down
1 change: 0 additions & 1 deletion lib/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ module.exports = function () {
return tag_count_map[store_name]
}


// TODO: expose via seneca.export, and deprecate seneca.store
var store = {
cmds: allcmds.slice(0),
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"entity",
"plugin"
],
"version": "10.0.2",
"version": "10.1.0",
"license": "MIT",
"homepage": "http://senecajs.org",
"author": "Richard Rodger (http://richardrodger.com/)",
Expand Down Expand Up @@ -39,7 +39,8 @@
"reset": "npm run clean && npm i && npm test",
"clean": "rm -rf node_modules package-lock.json yarn.lock",
"repo-tag": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && echo TAG: v$REPO_VERSION && git commit -a -m v$REPO_VERSION && git push && git tag v$REPO_VERSION && git push --tags;",
"repo-publish": "npm run clean && npm i --registry=http://registry.npmjs.org && npm run prettier && npm test && npm run repo-tag && npm publish --access public --registry=http://registry.npmjs.org"
"repo-publish": "npm run clean && npm i --registry=http://registry.npmjs.org && npm run repo-publish-quick",
"repo-publish-quick": "npm run prettier && npm test && npm run repo-tag && npm publish --access public --registry=http://registry.npmjs.org"
},
"dependencies": {
"eraro": "^2.1.0",
Expand Down
Loading

0 comments on commit b003962

Please sign in to comment.