@intelligentgraphics/ig.gfx.packager 2.0.8 → 2.1.0
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 +1116 -493
- package/build/index.js.map +1 -1
- package/package.json +5 -5
- package/readme.md +29 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intelligentgraphics/ig.gfx.packager",
|
|
3
|
-
"version": "2.0
|
|
4
|
-
"description": "IG.GFX.Packager 2.0
|
|
3
|
+
"version": "2.1.0",
|
|
4
|
+
"description": "IG.GFX.Packager 2.1.0 (2.1.0.100)",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"private": false,
|
|
7
7
|
"publishConfig": {
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"rimraf": "^3.0.2",
|
|
34
34
|
"source-map-support": "^0.5.19",
|
|
35
35
|
"terser": "^4.8.0",
|
|
36
|
-
"typedoc": "
|
|
37
|
-
"typescript": "
|
|
36
|
+
"typedoc": "~0.22.15",
|
|
37
|
+
"typescript": "~4.6.3",
|
|
38
38
|
"update-notifier": "^5.1.0",
|
|
39
39
|
"v8-compile-cache": "^2.1.1",
|
|
40
40
|
"y18n": "^5.0.8",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"babel-loader": "^8.1.0",
|
|
57
57
|
"ts-loader": "^9.2.5",
|
|
58
58
|
"ts-node": "^10.1.0",
|
|
59
|
-
"webpack": "^5.
|
|
59
|
+
"webpack": "^5.64.4",
|
|
60
60
|
"webpack-cli": "^4.7.2"
|
|
61
61
|
}
|
|
62
62
|
}
|
package/readme.md
CHANGED
|
@@ -192,8 +192,37 @@ Release:
|
|
|
192
192
|
npm run upload Basics -- --newVersion=1.0.0.100 --domain=IG --subdomain=Test
|
|
193
193
|
```
|
|
194
194
|
|
|
195
|
+
### Tsconfig
|
|
196
|
+
|
|
197
|
+
This program automatically creates a tsconfig file for every package to allow Visual Studio Code to provide the correct completions.
|
|
198
|
+
|
|
199
|
+
This tsconfig file includes the following options:
|
|
200
|
+
|
|
201
|
+
**target**
|
|
202
|
+
|
|
203
|
+
Sets the javascript version the typescript files should be compiled to.
|
|
204
|
+
|
|
205
|
+
**lib**
|
|
206
|
+
|
|
207
|
+
Specifies the standard libraries that are available.
|
|
208
|
+
|
|
195
209
|
## History
|
|
196
210
|
|
|
211
|
+
**IG.GFX.Packager 2.1.0**
|
|
212
|
+
|
|
213
|
+
- write "beta" or "patch" into version file for versions != x.x.x.100
|
|
214
|
+
- remove client side version check
|
|
215
|
+
- restrict typescript and typedoc version
|
|
216
|
+
|
|
217
|
+
**IG.GFX.Packager 2.0.10**
|
|
218
|
+
|
|
219
|
+
- validate script runtime property
|
|
220
|
+
- change schema validation to only log instead of refusing a file
|
|
221
|
+
|
|
222
|
+
**IG.GFX.Packager 2.0.9**
|
|
223
|
+
|
|
224
|
+
- automatically generate a tsconfig when non exists
|
|
225
|
+
|
|
197
226
|
**IG.GFX.Packager 2.0.8**
|
|
198
227
|
|
|
199
228
|
- also emit all diagnostics when emit wasn't skipped
|