@tsdotnet/disposable
Advanced tools
Comparing version 1.1.0 to 1.1.2
@@ -23,4 +23,5 @@ { | ||
"rules": { | ||
"@typescript-eslint/no-inferrable-types": "off" | ||
"@typescript-eslint/no-inferrable-types": "off", | ||
"@typescript-eslint/no-explicit-any": "off" | ||
} | ||
} |
{ | ||
"name": "@tsdotnet/disposable", | ||
"version": "1.1.0", | ||
"version": "1.1.2", | ||
"description": "A disposable base class and minimal set of interfaces to properly implement an object disposal pattern.", | ||
@@ -19,8 +19,10 @@ "author": "electricessence", | ||
"clean": "rimraf dist/*", | ||
"build": "npm run clean && copyfiles -u 1 src/**/*.d.ts dist && tsc", | ||
"bump": "npm version patch", | ||
"build": "npm prune && npm install && npm run clean && copyfiles -u 1 src/**/*.d.ts dist && tsc", | ||
"bump": "npm run precommit && npm version patch", | ||
"lint": "eslint src/**/*.ts", | ||
"precommit": "npm run lint && npm run build", | ||
"precommit": "npm run lint && npm run test && npm run build", | ||
"prepublishOnly": "npm run build && npm run test", | ||
"preversion": "npm run lint", | ||
"postversion": "git push && git push --tags" | ||
"postversion": "git push && git push --tags", | ||
"test": "ts-node -P ./spec/tsconfig.json ./node_modules/jasmine/bin/jasmine --config=spec/jasmine.json" | ||
}, | ||
@@ -36,2 +38,3 @@ "repository": { | ||
"devDependencies": { | ||
"@types/jasmine": "^3.5.10", | ||
"@typescript-eslint/eslint-plugin": "^2.30.0", | ||
@@ -45,2 +48,3 @@ "@typescript-eslint/parser": "^2.30.0", | ||
"eslint-plugin-promise": "^4.2.1", | ||
"jasmine": "^3.5.0", | ||
"rimraf": "^3.0.2", | ||
@@ -47,0 +51,0 @@ "ts-node": "^8.9.0", |
# ![alt text](https://avatars1.githubusercontent.com/u/64487547?s=30&v=4 "tsdotnet") tsdotnet / disposable | ||
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://github.com/tsdotnet/disposable/blob/master/LICENSE) | ||
![Publish](https://github.com/tsdotnet/disposable/workflows/Publish/badge.svg) | ||
![npm-publish](https://github.com/tsdotnet/disposable/workflows/npm-publish/badge.svg) | ||
[![npm version](https://img.shields.io/npm/v/@tsdotnet/disposable.svg?style=flat-square)](https://www.npmjs.com/package/@tsdotnet/disposable) | ||
A disposable base class and minimal set of interfaces to properly implement an object disposal pattern. |
Sorry, the diff of this file is not supported yet
25872
23
443
13