@tsdotnet/exceptions
Advanced tools
Comparing version 1.0.15 to 1.0.16
@@ -9,4 +9,4 @@ /*! | ||
readonly paramName: string; | ||
constructor(paramName: string, message?: string, innerException?: any); | ||
constructor(paramName: string, message?: string, innerException?: unknown); | ||
protected getName(): string; | ||
} |
@@ -8,4 +8,4 @@ /*! | ||
export default class ArgumentNullException extends ArgumentException { | ||
constructor(paramName: string, message?: string, innerException?: any); | ||
constructor(paramName: string, message?: string, innerException?: unknown); | ||
protected getName(): string; | ||
} |
@@ -11,3 +11,3 @@ /*! | ||
readonly message: string; | ||
readonly innerException?: any; | ||
readonly innerException?: unknown; | ||
readonly name: string; | ||
@@ -20,3 +20,3 @@ readonly stack: string; | ||
*/ | ||
constructor(message?: string, innerException?: any); | ||
constructor(message?: string, innerException?: unknown); | ||
/** | ||
@@ -23,0 +23,0 @@ * The string representation of the Exception instance. |
{ | ||
"name": "@tsdotnet/exceptions", | ||
"version": "1.0.15", | ||
"version": "1.0.16", | ||
"description": "", | ||
@@ -23,11 +23,11 @@ "author": "electricessence", | ||
"build:dist-esm": "rimraf dist-esm/* && tsc -p tsconfig.esm.json", | ||
"build": "npm i && run-p build:*", | ||
"build": "pnpm i && run-p build:*", | ||
"bump": "npm run precommit && npm version patch", | ||
"docs": "rimraf docs/* && rimraf docs/.nojekyll && typedoc --options typedoc.json --readme none && node ./.build/create-nojekyll.js", | ||
"docs": "rimraf docs/* && rimraf docs/.nojekyll && typedoc --options typedoc.json --readme none", | ||
"lint": "eslint src/**/*.ts", | ||
"precommit": "npm i && run-p lint test && run-p build:* && npm run validate", | ||
"precommit": "pnpm i && 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", | ||
"test": "mocha -r ts-node/register tests/**/*.ts", | ||
"validate": "node ./.build/validate-package.js" | ||
@@ -44,7 +44,9 @@ }, | ||
"devDependencies": { | ||
"@types/jasmine": "^3.5.10", | ||
"@typescript-eslint/eslint-plugin": "^2.33.0", | ||
"@typescript-eslint/parser": "^2.33.0", | ||
"@types/chai": "^4.2.11", | ||
"@types/mocha": "^7.0.2", | ||
"@typescript-eslint/eslint-plugin": "^3.0.0", | ||
"@typescript-eslint/parser": "^3.0.0", | ||
"chai": "^4.2.0", | ||
"copyfiles": "^2.2.0", | ||
"eslint": "^7.0.0", | ||
"eslint": "^7.1.0", | ||
"eslint-config-typescript": "^3.0.0", | ||
@@ -54,8 +56,11 @@ "eslint-plugin-import": "^2.20.2", | ||
"eslint-plugin-promise": "^4.2.1", | ||
"jasmine": "^3.5.0", | ||
"mocha": "^7.1.2", | ||
"npm-run-all": "^4.1.5", | ||
"nyc": "^15.0.1", | ||
"rimraf": "^3.0.2", | ||
"ts-node": "^8.10.1", | ||
"typedoc": "^0.17.6", | ||
"typescript": "^3.9.2" | ||
"typedoc": "^0.17.7", | ||
"typedoc-plugin-external-module-name": "^3.1.0", | ||
"typedoc-plugin-nojekyll": "^1.0.1", | ||
"typescript": "^3.9.3" | ||
}, | ||
@@ -62,0 +67,0 @@ "dependencies": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
31228
20