typescript-optional
Advanced tools
Comparing version 2.0.2-alpha.4 to 2.0.2-alpha.5
{ | ||
"name": "typescript-optional", | ||
"version": "2.0.2-alpha.4", | ||
"version": "2.0.2-alpha.5", | ||
"description": "Optional (like Java) implementation in TypeScript", | ||
@@ -16,8 +16,12 @@ "keywords": [ | ||
}, | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"type": "module", | ||
"main": "dist/cjs/index.js", | ||
"module": "dist/esm/index.js", | ||
"types": "dist/esm/index.d.ts", | ||
"sideEffects": false, | ||
"scripts": { | ||
"lint": "tslint lib/**/*.ts test/**/*.ts", | ||
"build": "tsc", | ||
"build": "npm run build:esm && npm run build:cjs", | ||
"build:esm": "tsc", | ||
"build:cjs": "tsc --module commonjs --outDir dist/cjs/", | ||
"test": "jest", | ||
@@ -24,0 +28,0 @@ "test:coverage": "jest --coverage", |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
25891
21
365