@intelligentgraphics/ig.gfx.packager 2.0.5 → 2.0.9

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/locales/en.json CHANGED
@@ -15,11 +15,14 @@
15
15
  "options.user.demands": "The bridge username has to either be provided using the option --user or through the \"%s\" environment variable",
16
16
  "options.password.description": "Password",
17
17
  "options.password.demands": "The bridge user password has to either be provided using the option --password or through the \"%s\" environment variable",
18
- "messages.buildSkipEmpty": "No folders were provided as input. Please provide the name of a folder in order to compile its typescript.",
19
- "messages.releaseSkipEmpty": "No folders were provided as input. Please provide the name of a folder in order to release it.",
18
+ "options.pushOnly.description": "Try to upload an existing zip file without building and validating the version number",
19
+ "options.noValidate.description": "Skip validation of wether newVersion is higher than the current version for releases",
20
+ "options.docs.description": "Generates typedoc",
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.",
20
23
  "messages.building": "Creating javascript files",
21
24
  "messages.invalidPackageFolder": "Could not find a _Package.json file in \"%s\"",
22
- "messages.movingReleaseZip": "Moving zip to releases folder",
25
+ "messages.movingReleaseZip": "Copying zip to releases folder",
23
26
  "messages.error": "Stopped execution because of the following error: %s",
24
27
  "messages.missingUploadArgs": "Can not upload the package because of the following issues:",
25
28
  "messages.basicsCopy": "Copying basics to lib folder",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@intelligentgraphics/ig.gfx.packager",
3
- "version": "2.0.5",
4
- "description": "IG.GFX.Packager 2.0.5 (2.0.5.100)",
3
+ "version": "2.0.9",
4
+ "description": "IG.GFX.Packager 2.0.9 (2.0.9.100)",
5
5
  "main": "build/index.js",
6
6
  "private": false,
7
7
  "publishConfig": {
@@ -19,7 +19,7 @@
19
19
  "dist": "webpack",
20
20
  "clean": "rimraf build *.tsbuildinfo",
21
21
  "prepublishOnly": "yarn clean && yarn dist",
22
- "postinstall": "node scripts/postinstall.js"
22
+ "_postinstall": "node scripts/postinstall.js"
23
23
  },
24
24
  "author": "Michael Beier <mb@intelligentgraphics.biz>",
25
25
  "dependencies": {
@@ -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.0",
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",
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.9**
212
+
213
+ - automatically generate a tsconfig when non exists
214
+
215
+ **IG.GFX.Packager 2.0.8**
216
+
217
+ - also emit all diagnostics when emit wasn't skipped
218
+ - fix release empty message
219
+ - add message when no targets could be found for build or release
220
+
221
+ **IG.GFX.Packager 2.0.7**
222
+
223
+ - fix copyright informations not being optional
224
+
225
+ **IG.GFX.Packager 2.0.6**
226
+
227
+ - add noValidate option for publish
228
+ - add pushOnly option for publish
229
+
197
230
  **IG.GFX.Packager 2.0.5**
198
231
 
199
232
  - fix typo