@intelligentgraphics/ig.gfx.packager 2.0.6 → 2.0.10
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 +868 -370
- package/build/index.js.map +1 -1
- package/locales/en.json +2 -2
- package/package.json +4 -4
- package/readme.md +33 -0
package/locales/en.json
CHANGED
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"options.pushOnly.description": "Try to upload an existing zip file without building and validating the version number",
|
|
19
19
|
"options.noValidate.description": "Skip validation of wether newVersion is higher than the current version for releases",
|
|
20
20
|
"options.docs.description": "Generates typedoc",
|
|
21
|
-
"messages.buildSkipEmpty": "No
|
|
22
|
-
"messages.releaseSkipEmpty": "No
|
|
21
|
+
"messages.buildSkipEmpty": "No build targets found. Please check wether a folder with the provided name exists and wether it has _Package.json.",
|
|
22
|
+
"messages.releaseSkipEmpty": "No release targets found. Please check wether a folder with the provided name exists and wether it has _Package.json.",
|
|
23
23
|
"messages.building": "Creating javascript files",
|
|
24
24
|
"messages.invalidPackageFolder": "Could not find a _Package.json file in \"%s\"",
|
|
25
25
|
"messages.movingReleaseZip": "Copying zip to releases folder",
|
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.0.10",
|
|
4
|
+
"description": "IG.GFX.Packager 2.0.10 (2.0.10.100)",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"private": false,
|
|
7
7
|
"publishConfig": {
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@babel/plugin-proposal-class-properties": "^7.14.5",
|
|
45
45
|
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
|
|
46
46
|
"@babel/preset-env": "^7.14.9",
|
|
47
|
-
"@intelligentgraphics/ig.tools.core": "^1.5.
|
|
47
|
+
"@intelligentgraphics/ig.tools.core": "^1.5.1",
|
|
48
48
|
"@intelligentgraphics/ig.utilities": "^1.6.6",
|
|
49
49
|
"@types/archiver": "^5.1.1",
|
|
50
50
|
"@types/fs-extra": "^9.0.12",
|
|
@@ -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,41 @@ 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.0.10**
|
|
212
|
+
|
|
213
|
+
- validate script runtime property
|
|
214
|
+
- change schema validation to only log instead of refusing a file
|
|
215
|
+
|
|
216
|
+
**IG.GFX.Packager 2.0.9**
|
|
217
|
+
|
|
218
|
+
- automatically generate a tsconfig when non exists
|
|
219
|
+
|
|
220
|
+
**IG.GFX.Packager 2.0.8**
|
|
221
|
+
|
|
222
|
+
- also emit all diagnostics when emit wasn't skipped
|
|
223
|
+
- fix release empty message
|
|
224
|
+
- add message when no targets could be found for build or release
|
|
225
|
+
|
|
226
|
+
**IG.GFX.Packager 2.0.7**
|
|
227
|
+
|
|
228
|
+
- fix copyright informations not being optional
|
|
229
|
+
|
|
197
230
|
**IG.GFX.Packager 2.0.6**
|
|
198
231
|
|
|
199
232
|
- add noValidate option for publish
|