@tsdotnet/disposable
Advanced tools
Comparing version 1.1.4 to 1.1.5
{ | ||
"env": { | ||
"browser": true, | ||
"es6": true, | ||
"node": true | ||
}, | ||
"extends": [ | ||
"typescript" | ||
], | ||
"globals": { | ||
"Atomics": "readonly", | ||
"SharedArrayBuffer": "readonly" | ||
}, | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"ecmaVersion": 2018, | ||
"sourceType": "module" | ||
}, | ||
"plugins": [ | ||
"@typescript-eslint" | ||
], | ||
"rules": { | ||
"@typescript-eslint/no-inferrable-types": "off", | ||
"@typescript-eslint/no-explicit-any": "off" | ||
} | ||
"env": { | ||
"browser": true, | ||
"es6": true, | ||
"node": true | ||
}, | ||
"extends": [ | ||
"typescript" | ||
], | ||
"globals": { | ||
"Atomics": "readonly", | ||
"SharedArrayBuffer": "readonly" | ||
}, | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"ecmaVersion": 2018, | ||
"sourceType": "module" | ||
}, | ||
"plugins": [ | ||
"@typescript-eslint" | ||
], | ||
"rules": { | ||
"@typescript-eslint/no-inferrable-types": "off", | ||
"@typescript-eslint/no-explicit-any": "off", | ||
"@typescript-eslint/no-namespace": "off", | ||
"@typescript-eslint/no-use-before-define": "off", | ||
"no-inner-declarations": "off" | ||
} | ||
} |
{ | ||
"name": "@tsdotnet/disposable", | ||
"version": "1.1.4", | ||
"version": "1.1.5", | ||
"description": "A disposable base class and minimal set of interfaces to properly implement an object disposal pattern.", | ||
@@ -21,9 +21,11 @@ "author": "electricessence", | ||
"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", | ||
"bump": "npm run precommit && npm version patch && npm run docs && git commit -m \"Updated docs.\" docs", | ||
"docs": "rimraf docs/* && rimraf docs/.nojekyll && typedoc --excludeNotExported --out docs src && node ./.build/create-nojekyll.js", | ||
"lint": "eslint src/**/*.ts", | ||
"precommit": "npm run lint && npm run test && npm run build && node validate-package.js", | ||
"prepublishOnly": "npm run build && node validate-package.js && npm run test", | ||
"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", | ||
"test": "ts-node -P ./tsconfig.json ./node_modules/jasmine/bin/jasmine --config=spec/jasmine.json" | ||
"test": "ts-node -P ./tsconfig.json ./node_modules/jasmine/bin/jasmine --config=spec/jasmine.json", | ||
"validate": "node ./.build/validate-package.js" | ||
}, | ||
@@ -51,4 +53,5 @@ "repository": { | ||
"ts-node": "^8.9.0", | ||
"typedoc": "^0.17.6", | ||
"typescript": "^3.8.3" | ||
} | ||
} |
@@ -8,1 +8,4 @@ # ![alt text](https://avatars1.githubusercontent.com/u/64487547?s=30&v=4 "tsdotnet") tsdotnet / disposable | ||
A disposable base class and minimal set of interfaces to properly implement an object disposal pattern. | ||
## Docs | ||
[tsdotnet.github.io/disposable](https://tsdotnet.github.io/disposable/) |
40505
10
14
29
678