@intelligentgraphics/ig.gfx.packager 2.1.1 → 2.1.2
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/build/index.js +953 -550
- package/build/index.js.map +1 -1
- package/package.json +24 -3
- package/readme.md +6 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intelligentgraphics/ig.gfx.packager",
|
|
3
|
-
"version": "2.1.
|
|
4
|
-
"description": "IG.GFX.Packager 2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
4
|
+
"description": "IG.GFX.Packager 2.1.2 (2.1.2.100)",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"private": false,
|
|
7
7
|
"publishConfig": {
|
|
@@ -19,17 +19,18 @@
|
|
|
19
19
|
"dist": "webpack",
|
|
20
20
|
"clean": "rimraf build *.tsbuildinfo",
|
|
21
21
|
"prepublishOnly": "yarn clean && yarn dist",
|
|
22
|
+
"test": "jest",
|
|
22
23
|
"_postinstall": "node scripts/postinstall.js"
|
|
23
24
|
},
|
|
24
25
|
"author": "Michael Beier <mb@intelligentgraphics.biz>",
|
|
25
26
|
"dependencies": {
|
|
26
27
|
"ajv": "^8.6.2",
|
|
27
|
-
"archiver": "^5.0.0",
|
|
28
28
|
"axios": "^0.21.1",
|
|
29
29
|
"core-js": "^3.16.0",
|
|
30
30
|
"execa": "^5.1.1",
|
|
31
31
|
"fs-extra": "^10.0.0",
|
|
32
32
|
"glob": "^7.1.4",
|
|
33
|
+
"jszip": "^3.10.0",
|
|
33
34
|
"rimraf": "^3.0.2",
|
|
34
35
|
"source-map-support": "^0.5.19",
|
|
35
36
|
"terser": "^4.8.0",
|
|
@@ -54,9 +55,29 @@
|
|
|
54
55
|
"@types/update-notifier": "^5.1.0",
|
|
55
56
|
"@types/yargs": "^17.0.2",
|
|
56
57
|
"babel-loader": "^8.1.0",
|
|
58
|
+
"jest": "^28.1.1",
|
|
59
|
+
"ts-jest": "^28.0.5",
|
|
57
60
|
"ts-loader": "^9.2.5",
|
|
58
61
|
"ts-node": "^10.1.0",
|
|
59
62
|
"webpack": "^5.64.4",
|
|
60
63
|
"webpack-cli": "^4.7.2"
|
|
64
|
+
},
|
|
65
|
+
"jest": {
|
|
66
|
+
"transform": {
|
|
67
|
+
"\\.tsx?$": "ts-jest"
|
|
68
|
+
},
|
|
69
|
+
"testRegex": "(.*\\.(test))\\.(ts|tsx)$",
|
|
70
|
+
"moduleFileExtensions": [
|
|
71
|
+
"ts",
|
|
72
|
+
"tsx",
|
|
73
|
+
"js",
|
|
74
|
+
"json"
|
|
75
|
+
],
|
|
76
|
+
"moduleNameMapper": {
|
|
77
|
+
"^~/(.*)": "<rootDir>/src/$1"
|
|
78
|
+
},
|
|
79
|
+
"testEnvironmentOptions": {
|
|
80
|
+
"url": "http://localhost/"
|
|
81
|
+
}
|
|
61
82
|
}
|
|
62
83
|
}
|
package/readme.md
CHANGED
|
@@ -208,6 +208,12 @@ Specifies the standard libraries that are available.
|
|
|
208
208
|
|
|
209
209
|
## History
|
|
210
210
|
|
|
211
|
+
**IG.GFX.Packager 2.1.2**
|
|
212
|
+
|
|
213
|
+
- improve handling of interactors with many dots in name
|
|
214
|
+
- throw an error when executing build for a package without typescript files
|
|
215
|
+
- migrate to jszip to resolve zip issues
|
|
216
|
+
|
|
211
217
|
**IG.GFX.Packager 2.1.1**
|
|
212
218
|
|
|
213
219
|
- fix update notifier
|