@agrozyme/numeric 1.0.12 → 1.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.prettierrc.yml +2 -2
- package/package.json +16 -11
- package/root/index.ts +134 -365
- package/tsc-multi.json +4 -3
- package/tsconfig.json +3 -4
- package/out/index.d.ts +0 -159
- package/out/index.js +0 -473
- package/out/index.js.map +0 -1
- package/out/index.mjs +0 -457
- package/out/index.mjs.map +0 -1
package/.prettierrc.yml
CHANGED
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agrozyme/numeric",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.14",
|
|
4
4
|
"description": "",
|
|
5
|
-
"main": "out/index.js",
|
|
6
|
-
"module": "out/index.mjs",
|
|
7
|
-
"types": "out/index.d.ts",
|
|
5
|
+
"main": "./out/index.js",
|
|
6
|
+
"module": "./out/index.mjs",
|
|
7
|
+
"types": "./out/index.d.ts",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
|
-
"
|
|
11
|
-
"
|
|
10
|
+
"require": "./out/index.js",
|
|
11
|
+
"import": "./out/index.mjs"
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"repository": {
|
|
@@ -27,11 +27,10 @@
|
|
|
27
27
|
"@types/jasmine": "^4",
|
|
28
28
|
"@types/node": "^18",
|
|
29
29
|
"jasmine": "^4",
|
|
30
|
-
"prettier-plugin-sort-imports": "^1",
|
|
31
30
|
"shx": "^0",
|
|
32
31
|
"ts-node": "^10",
|
|
33
|
-
"tsc-multi": "^
|
|
34
|
-
"typescript": "^
|
|
32
|
+
"tsc-multi": "^1",
|
|
33
|
+
"typescript": "^5",
|
|
35
34
|
"yarpm": "^1"
|
|
36
35
|
},
|
|
37
36
|
"dependencies": {
|
|
@@ -46,8 +45,14 @@
|
|
|
46
45
|
"tslib": "^2"
|
|
47
46
|
},
|
|
48
47
|
"scripts": {
|
|
49
|
-
"clean": "shx rm -
|
|
50
|
-
"
|
|
48
|
+
"clean:out": "shx rm -rf out",
|
|
49
|
+
"clean:tsbuildinfo": "shx rm -f *.tsbuildinfo out/*.tsbuildinfo",
|
|
50
|
+
"clean": "yarpm run clean:out && yarpm run clean:tsbuildinfo",
|
|
51
|
+
"build:esm": "tsc --module esnext --moduleResolution bundler --outDir out/esm && yarpm run clean:tsbuildinfo",
|
|
52
|
+
"build:cjs": "tsc --module commonjs --moduleResolution node --outDir out/cjs && yarpm run clean:tsbuildinfo",
|
|
53
|
+
"build:split": "yarpm run clean && yarpm run build:cjs && yarpm run build:esm",
|
|
54
|
+
"build:multi": "tsc-multi --clean && tsc-multi --force && yarpm run clean:tsbuildinfo",
|
|
55
|
+
"build": "yarpm run build:multi",
|
|
51
56
|
"test": "jasmine --config=jasmine.json"
|
|
52
57
|
}
|
|
53
58
|
}
|