@tsdotnet/disposable
Advanced tools
Comparing version 1.1.10 to 1.1.11
{ | ||
"name": "@tsdotnet/disposable", | ||
"version": "1.1.10", | ||
"version": "1.1.11", | ||
"description": "A disposable base class and minimal set of interfaces to properly implement an object disposal pattern.", | ||
@@ -19,11 +19,12 @@ "author": "electricessence", | ||
"scripts": { | ||
"clean": "rimraf dist/* && rimraf dist-esm/*", | ||
"build": "npm prune && npm install && npm run clean && copyfiles -u 1 src/**/*.d.ts dist && tsc && tsc -p tsconfig.esm.json", | ||
"bump": "npm run precommit && npm version patch && npm run docs && git commit -m \"Updated docs.\" docs && git push", | ||
"build:dist": "rimraf dist/* && copyfiles -u 1 src/**/*.d.ts dist && tsc", | ||
"build:dist-esm": "rimraf dist-esm/* && tsc -p tsconfig.esm.json", | ||
"build": "npm install && run-p build:*", | ||
"bump": "npm run precommit && npm version patch", | ||
"docs": "rimraf docs/* && rimraf docs/.nojekyll && typedoc --options typedoc.json --readme none --theme minimal && node ./.build/create-nojekyll.js", | ||
"lint": "eslint src/**/*.ts", | ||
"precommit": "npm run lint && npm run test && npm run build && npm run validate", | ||
"prepublishOnly": "npm run build && npm run validate && npm run test", | ||
"preversion": "npm run lint", | ||
"postversion": "git push && git push --tags", | ||
"precommit": "npm prune && npm install && run-p lint test && run-p build:* && npm run validate", | ||
"prepublishOnly": "npm run build && run-p validate test", | ||
"preversion": "run-p lint test", | ||
"postversion": "git push && git push --tags && npm run docs && git commit -m \"Updated docs.\" docs && git push", | ||
"test": "ts-node -P ./tsconfig.json ./node_modules/jasmine/bin/jasmine --config=spec/jasmine.json", | ||
@@ -42,4 +43,4 @@ "validate": "node ./.build/validate-package.js" | ||
"@types/jasmine": "^3.5.10", | ||
"@typescript-eslint/eslint-plugin": "^2.30.0", | ||
"@typescript-eslint/parser": "^2.30.0", | ||
"@typescript-eslint/eslint-plugin": "^2.31.0", | ||
"@typescript-eslint/parser": "^2.31.0", | ||
"copyfiles": "^2.2.0", | ||
@@ -52,4 +53,5 @@ "eslint": "^6.8.0", | ||
"jasmine": "^3.5.0", | ||
"npm-run-all": "^4.1.5", | ||
"rimraf": "^3.0.2", | ||
"ts-node": "^8.9.0", | ||
"ts-node": "^8.10.1", | ||
"typedoc": "^0.17.6", | ||
@@ -56,0 +58,0 @@ "typescript": "^3.8.3" |
38535
15