@waiting/shared-core
Advanced tools
Comparing version 3.0.0 to 3.1.0
@@ -0,1 +1,38 @@ | ||
# Change Log | ||
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
# 3.1.0 (2019-11-16) | ||
### Bug Fixes | ||
* **lint:** minors ([ecc3672](https://github.com/waitingsong/node-shared-core/commit/ecc3672afde0c0d3378b99c5f7d5d402681fe1f0)) | ||
* ab2str() ([0a09e04](https://github.com/waitingsong/node-shared-core/commit/0a09e046f0e2873c1c88899ad8ad2dfdd71ce7ab)) | ||
* not reading content of COMMIT_EDITMSG with isSkipCommitlint() ([54bf9b5](https://github.com/waitingsong/node-shared-core/commit/54bf9b5b2655dc79bfc12f3d680c087d0e8197a0)) | ||
### Features | ||
* **types:** add type JsonType ([3cad591](https://github.com/waitingsong/node-shared-core/commit/3cad591739b392db05e335680c319a9ca9301928)) | ||
* **types:** add type KnownKeys ([8f05f43](https://github.com/waitingsong/node-shared-core/commit/8f05f4322a6dc0d4b8d97df3ffd229ac86b91093)) | ||
* add ab2buf(), buf2ab() ([56b99c7](https://github.com/waitingsong/node-shared-core/commit/56b99c77ecdb2f3e3375804305e4eefcbb4e6558)) | ||
* add ab2str(), str2ab(), genRandomInt() ([8914fae](https://github.com/waitingsong/node-shared-core/commit/8914faeea8fb6478748a90a96f5bfafcaf5821e5)) | ||
* add readFileLineRx() ([39c69c5](https://github.com/waitingsong/node-shared-core/commit/39c69c56b3f87793c57e5352e0d4cbb2dbb44d14)) | ||
* **types:** add Concat ([2f71b17](https://github.com/waitingsong/node-shared-core/commit/2f71b17099425795fd0317c69709d173984a09ab)) | ||
* **types:** add types below ([0109140](https://github.com/waitingsong/node-shared-core/commit/0109140860f254fe614351ff00ce3d7e2df1c905)) | ||
* add SetPathDirectory() ([658218f](https://github.com/waitingsong/node-shared-core/commit/658218f2c3736bf49a39cf0f5d40bc17410ecc6e)) | ||
* add src files ([d8e21f7](https://github.com/waitingsong/node-shared-core/commit/d8e21f793292f5f5d46795d625811f149abcba8b)) | ||
* add validateDllFile() ([c7de681](https://github.com/waitingsong/node-shared-core/commit/c7de681b5a2c28d85c1d26d2047a34abf8c5ad80)) | ||
* export const isWin32, userHome ([03da0fa](https://github.com/waitingsong/node-shared-core/commit/03da0fa5f13a2a07d9f244bbfed79d8551a79d3d)) | ||
* export helper ([d85170c](https://github.com/waitingsong/node-shared-core/commit/d85170c888d1828453e76b51abe282065cdd85ec)) | ||
* export isDirFileExists() ([dd56e9d](https://github.com/waitingsong/node-shared-core/commit/dd56e9d29f2f4b1ea266319c789bd313df2e997e)) | ||
* genFileFromExample() ([bb8ea22](https://github.com/waitingsong/node-shared-core/commit/bb8ea229954ab0ee3145d5b1f099e45b68521cfa)) | ||
* isSkipCommitlint() check whether skip commitlint ([8845ad3](https://github.com/waitingsong/node-shared-core/commit/8845ad31f6e81c012247f7c6fb0c2779b158f913)) | ||
# Changelog | ||
@@ -2,0 +39,0 @@ |
107
package.json
{ | ||
"name": "@waiting/shared-core", | ||
"author": "waiting", | ||
"version": "3.0.0", | ||
"version": "3.1.0", | ||
"description": "node core function re export with Promise or Observable", | ||
@@ -10,5 +10,2 @@ "keywords": [ | ||
], | ||
"engines": { | ||
"node": ">=10.13.0" | ||
}, | ||
"bin": {}, | ||
@@ -29,7 +26,34 @@ "browser": "", | ||
"license": "MIT", | ||
"dependencies": { | ||
"@waiting/shared-types": "^3.1.0", | ||
"rxjs": "^6.5.2" | ||
}, | ||
"devDependencies": { | ||
"cross-env": "6" | ||
}, | ||
"engines": { | ||
"node": ">=10.16.0" | ||
}, | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"build": "npm run tsc && npm run rp", | ||
"devbuild": "npm run tsc && npm run rp", | ||
"clean": "rm -rf dist/* .vscode/.tsbuildinfo .vscode/.tsbuildinfo.* ", | ||
"cov": "cross-env TS_NODE_PROJECT=test/tsconfig.json nyc mocha", | ||
"lint": "eslint --fix --cache {src,test}/**/*.ts", | ||
"lint:nofix": "eslint --cache {src,test}/**/*.ts", | ||
"rp": "rollup -c rollup.config.js", | ||
"rp:w": "npm run tsc:w | rollup -wc rollup.config.js", | ||
"test": "cross-env TS_NODE_PROJECT=test/tsconfig.json mocha --opts test/mocha.opts", | ||
"test:browser": "cd .config && npm run browser && cd ..", | ||
"tsc": "tsc -p tsconfig.json", | ||
"tsc:w": "tsc -p tsconfig.json -w" | ||
}, | ||
"nyc": { | ||
"include": [ | ||
"src/**/*.ts" | ||
], | ||
"exclude": [ | ||
"**/*.js", | ||
"**/*.test.ts", | ||
"**/*.d.ts", | ||
".githooks", | ||
@@ -39,10 +63,15 @@ "dist", | ||
"src/bin", | ||
"test*" | ||
"src/domain.ts", | ||
"src/interface.ts", | ||
"test*", | ||
"**/node_modules*", | ||
"**/*.d.ts", | ||
"**/*.js" | ||
], | ||
"extension": [ | ||
".ts", | ||
".tsx" | ||
".ts" | ||
], | ||
"reporter": [ | ||
"text-summary", | ||
"json", | ||
"html" | ||
@@ -52,59 +81,3 @@ ], | ||
}, | ||
"dependencies": { | ||
"@waiting/shared-types": "^1.0.0", | ||
"rxjs": "^6.5.2" | ||
}, | ||
"devDependencies": { | ||
"@types/mocha": "*", | ||
"@types/node": "*", | ||
"@types/power-assert": "*", | ||
"@types/rewire": "*", | ||
"@types/rimraf": "*", | ||
"@types/yargs": "^13.0.0", | ||
"@waiting/eslint-config": "^2.1.0", | ||
"coveralls": "^3.0.5", | ||
"cross-env": "^5.2.0", | ||
"eslint": "^6.2.0", | ||
"espower-typescript": "^9.0.2", | ||
"intelli-espower-loader": "^1.0.1", | ||
"mocha": "^6.1.4", | ||
"mocha-lcov-reporter": "^1.3.0", | ||
"nyc": "^14.1.1", | ||
"power-assert": ">=1.5", | ||
"rewire": "^4.0.0", | ||
"rimraf": "^3.0.0", | ||
"rollup-plugin-commonjs": "^10.0.0", | ||
"rollup-plugin-node-resolve": "^5.0.1", | ||
"rollup-plugin-terser": "^5.0.0", | ||
"rxrunscript": "^5.2.0", | ||
"ts-node": "^8.3.0", | ||
"typescript": "^3.5.0", | ||
"yargs": "^14.0.0" | ||
}, | ||
"scripts": { | ||
"bp:add": "git remote add bp https://github.com/waitingsong/npm-base", | ||
"bp:sync": "git fetch --all -v && git merge bp/master -m \"Merge remote-tracking branch 'bp/master'\"", | ||
"build": "npm run lint && npm run tsc && npm run rp", | ||
"devbuild": "npm run clean && npm run tsc:dev && npm run rp", | ||
"clean": "rm -rf dist/* .vscode/.tsbuildinfo .vscode/.tsbuildinfo.* ", | ||
"cov": "cross-env TS_NODE_PROJECT=test/tsconfig.json nyc mocha", | ||
"cov:coveralls": "cross-env TS_NODE_PROJECT=test/tsconfig.json nyc mocha && nyc report --reporter=text-lcov | coveralls", | ||
"doc": "typedoc --includes src/", | ||
"jslint": "eslint --fix dist/**/*.js", | ||
"link_global": "npm link typescript", | ||
"lint": "eslint --fix {src,test}/**/*.ts", | ||
"postpublish": "git push origin --follow-tags", | ||
"prepublishOnly": "npm run clean && npm run build", | ||
"release": "standard-version -r", | ||
"release:first": "standard-version --first-release", | ||
"repo:init": "sh .githooks/init-repo.sh", | ||
"rp": "rollup -c rollup.config.js", | ||
"rp:w": "npm run tsc:w | rollup -wc rollup.config.js", | ||
"test": "cross-env TS_NODE_PROJECT=test/tsconfig.json mocha --opts test/mocha.opts", | ||
"test:browser": "cd .config && npm run browser && cd ..", | ||
"browser:debug": "cd .config && npm run debug && cd ..", | ||
"tsc": "tsc -p tsconfig.json", | ||
"tsc:dev": "tsc -p tsconfig.dev.json", | ||
"tsc:w": "tsc -p tsconfig.json -w" | ||
} | ||
"gitHead": "a60084fdc2ac3fd6f66d1021c834c30644144faa" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
55870
1
24
+ Added@waiting/shared-types@3.5.1(transitive)
- Removed@waiting/shared-types@1.1.0(transitive)
Updated@waiting/shared-types@^3.1.0