shipthis 0.1.1 → 0.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/npm-shrinkwrap.json +14484 -0
- package/oclif.manifest.json +105 -105
- package/package.json +5 -4
package/oclif.manifest.json
CHANGED
|
@@ -156,6 +156,110 @@
|
|
|
156
156
|
"status.js"
|
|
157
157
|
]
|
|
158
158
|
},
|
|
159
|
+
"internal:fastlane": {
|
|
160
|
+
"aliases": [],
|
|
161
|
+
"args": {
|
|
162
|
+
"username": {
|
|
163
|
+
"description": "Your Apple email address",
|
|
164
|
+
"name": "username",
|
|
165
|
+
"required": true
|
|
166
|
+
},
|
|
167
|
+
"file": {
|
|
168
|
+
"description": "Path where the fastlane session will be written",
|
|
169
|
+
"name": "file",
|
|
170
|
+
"required": true
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
"description": "Output a fastlane session file which can be used with xcodes",
|
|
174
|
+
"examples": [
|
|
175
|
+
"<%= config.bin %> <%= command.id %>",
|
|
176
|
+
"<%= config.bin %> <%= command.id %> --force --username me@email.nowhere"
|
|
177
|
+
],
|
|
178
|
+
"flags": {
|
|
179
|
+
"force": {
|
|
180
|
+
"char": "f",
|
|
181
|
+
"name": "force",
|
|
182
|
+
"allowNo": false,
|
|
183
|
+
"type": "boolean"
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
"hasDynamicHelp": false,
|
|
187
|
+
"hiddenAliases": [],
|
|
188
|
+
"id": "internal:fastlane",
|
|
189
|
+
"pluginAlias": "shipthis",
|
|
190
|
+
"pluginName": "shipthis",
|
|
191
|
+
"pluginType": "core",
|
|
192
|
+
"strict": true,
|
|
193
|
+
"enableJsonFlag": false,
|
|
194
|
+
"isESM": true,
|
|
195
|
+
"relativePath": [
|
|
196
|
+
"dist",
|
|
197
|
+
"commands",
|
|
198
|
+
"internal",
|
|
199
|
+
"fastlane.js"
|
|
200
|
+
]
|
|
201
|
+
},
|
|
202
|
+
"internal:readme": {
|
|
203
|
+
"aliases": [],
|
|
204
|
+
"args": {
|
|
205
|
+
"outputDir": {
|
|
206
|
+
"description": "The directory where the readme files will be written",
|
|
207
|
+
"name": "outputDir",
|
|
208
|
+
"required": true
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
"description": "Generate the readme files for the commands",
|
|
212
|
+
"examples": [
|
|
213
|
+
"<%= config.bin %> <%= command.id %>"
|
|
214
|
+
],
|
|
215
|
+
"flags": {
|
|
216
|
+
"notDryRun": {
|
|
217
|
+
"char": "n",
|
|
218
|
+
"description": "Set to actually write the files (will not overwrite)",
|
|
219
|
+
"name": "notDryRun",
|
|
220
|
+
"allowNo": false,
|
|
221
|
+
"type": "boolean"
|
|
222
|
+
},
|
|
223
|
+
"overWrite": {
|
|
224
|
+
"char": "o",
|
|
225
|
+
"description": "Overwrite existing files",
|
|
226
|
+
"name": "overWrite",
|
|
227
|
+
"allowNo": false,
|
|
228
|
+
"type": "boolean"
|
|
229
|
+
},
|
|
230
|
+
"depth": {
|
|
231
|
+
"char": "d",
|
|
232
|
+
"description": "The depth of the topic tree to render as separate files",
|
|
233
|
+
"name": "depth",
|
|
234
|
+
"hasDynamicHelp": false,
|
|
235
|
+
"multiple": false,
|
|
236
|
+
"type": "option"
|
|
237
|
+
},
|
|
238
|
+
"only": {
|
|
239
|
+
"char": "l",
|
|
240
|
+
"description": "Glob pattern - will only write the files which match",
|
|
241
|
+
"name": "only",
|
|
242
|
+
"hasDynamicHelp": false,
|
|
243
|
+
"multiple": false,
|
|
244
|
+
"type": "option"
|
|
245
|
+
}
|
|
246
|
+
},
|
|
247
|
+
"hasDynamicHelp": false,
|
|
248
|
+
"hiddenAliases": [],
|
|
249
|
+
"id": "internal:readme",
|
|
250
|
+
"pluginAlias": "shipthis",
|
|
251
|
+
"pluginName": "shipthis",
|
|
252
|
+
"pluginType": "core",
|
|
253
|
+
"strict": true,
|
|
254
|
+
"enableJsonFlag": false,
|
|
255
|
+
"isESM": true,
|
|
256
|
+
"relativePath": [
|
|
257
|
+
"dist",
|
|
258
|
+
"commands",
|
|
259
|
+
"internal",
|
|
260
|
+
"readme.js"
|
|
261
|
+
]
|
|
262
|
+
},
|
|
159
263
|
"game:create": {
|
|
160
264
|
"aliases": [],
|
|
161
265
|
"args": {},
|
|
@@ -555,110 +659,6 @@
|
|
|
555
659
|
"wizard.js"
|
|
556
660
|
]
|
|
557
661
|
},
|
|
558
|
-
"internal:fastlane": {
|
|
559
|
-
"aliases": [],
|
|
560
|
-
"args": {
|
|
561
|
-
"username": {
|
|
562
|
-
"description": "Your Apple email address",
|
|
563
|
-
"name": "username",
|
|
564
|
-
"required": true
|
|
565
|
-
},
|
|
566
|
-
"file": {
|
|
567
|
-
"description": "Path where the fastlane session will be written",
|
|
568
|
-
"name": "file",
|
|
569
|
-
"required": true
|
|
570
|
-
}
|
|
571
|
-
},
|
|
572
|
-
"description": "Output a fastlane session file which can be used with xcodes",
|
|
573
|
-
"examples": [
|
|
574
|
-
"<%= config.bin %> <%= command.id %>",
|
|
575
|
-
"<%= config.bin %> <%= command.id %> --force --username me@email.nowhere"
|
|
576
|
-
],
|
|
577
|
-
"flags": {
|
|
578
|
-
"force": {
|
|
579
|
-
"char": "f",
|
|
580
|
-
"name": "force",
|
|
581
|
-
"allowNo": false,
|
|
582
|
-
"type": "boolean"
|
|
583
|
-
}
|
|
584
|
-
},
|
|
585
|
-
"hasDynamicHelp": false,
|
|
586
|
-
"hiddenAliases": [],
|
|
587
|
-
"id": "internal:fastlane",
|
|
588
|
-
"pluginAlias": "shipthis",
|
|
589
|
-
"pluginName": "shipthis",
|
|
590
|
-
"pluginType": "core",
|
|
591
|
-
"strict": true,
|
|
592
|
-
"enableJsonFlag": false,
|
|
593
|
-
"isESM": true,
|
|
594
|
-
"relativePath": [
|
|
595
|
-
"dist",
|
|
596
|
-
"commands",
|
|
597
|
-
"internal",
|
|
598
|
-
"fastlane.js"
|
|
599
|
-
]
|
|
600
|
-
},
|
|
601
|
-
"internal:readme": {
|
|
602
|
-
"aliases": [],
|
|
603
|
-
"args": {
|
|
604
|
-
"outputDir": {
|
|
605
|
-
"description": "The directory where the readme files will be written",
|
|
606
|
-
"name": "outputDir",
|
|
607
|
-
"required": true
|
|
608
|
-
}
|
|
609
|
-
},
|
|
610
|
-
"description": "Generate the readme files for the commands",
|
|
611
|
-
"examples": [
|
|
612
|
-
"<%= config.bin %> <%= command.id %>"
|
|
613
|
-
],
|
|
614
|
-
"flags": {
|
|
615
|
-
"notDryRun": {
|
|
616
|
-
"char": "n",
|
|
617
|
-
"description": "Set to actually write the files (will not overwrite)",
|
|
618
|
-
"name": "notDryRun",
|
|
619
|
-
"allowNo": false,
|
|
620
|
-
"type": "boolean"
|
|
621
|
-
},
|
|
622
|
-
"overWrite": {
|
|
623
|
-
"char": "o",
|
|
624
|
-
"description": "Overwrite existing files",
|
|
625
|
-
"name": "overWrite",
|
|
626
|
-
"allowNo": false,
|
|
627
|
-
"type": "boolean"
|
|
628
|
-
},
|
|
629
|
-
"depth": {
|
|
630
|
-
"char": "d",
|
|
631
|
-
"description": "The depth of the topic tree to render as separate files",
|
|
632
|
-
"name": "depth",
|
|
633
|
-
"hasDynamicHelp": false,
|
|
634
|
-
"multiple": false,
|
|
635
|
-
"type": "option"
|
|
636
|
-
},
|
|
637
|
-
"only": {
|
|
638
|
-
"char": "l",
|
|
639
|
-
"description": "Glob pattern - will only write the files which match",
|
|
640
|
-
"name": "only",
|
|
641
|
-
"hasDynamicHelp": false,
|
|
642
|
-
"multiple": false,
|
|
643
|
-
"type": "option"
|
|
644
|
-
}
|
|
645
|
-
},
|
|
646
|
-
"hasDynamicHelp": false,
|
|
647
|
-
"hiddenAliases": [],
|
|
648
|
-
"id": "internal:readme",
|
|
649
|
-
"pluginAlias": "shipthis",
|
|
650
|
-
"pluginName": "shipthis",
|
|
651
|
-
"pluginType": "core",
|
|
652
|
-
"strict": true,
|
|
653
|
-
"enableJsonFlag": false,
|
|
654
|
-
"isESM": true,
|
|
655
|
-
"relativePath": [
|
|
656
|
-
"dist",
|
|
657
|
-
"commands",
|
|
658
|
-
"internal",
|
|
659
|
-
"readme.js"
|
|
660
|
-
]
|
|
661
|
-
},
|
|
662
662
|
"apple:apiKey:create": {
|
|
663
663
|
"aliases": [],
|
|
664
664
|
"args": {},
|
|
@@ -2261,5 +2261,5 @@
|
|
|
2261
2261
|
]
|
|
2262
2262
|
}
|
|
2263
2263
|
},
|
|
2264
|
-
"version": "0.1.
|
|
2264
|
+
"version": "0.1.2"
|
|
2265
2265
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shipthis",
|
|
3
3
|
"description": "ShipThis manages building and uploading your Godot games to the App Store and Google Play.",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.2",
|
|
5
5
|
"author": "Hello Invent Ltd",
|
|
6
6
|
"bin": {
|
|
7
7
|
"shipthis": "./bin/run.js"
|
|
@@ -84,7 +84,8 @@
|
|
|
84
84
|
"/bin",
|
|
85
85
|
"/dist",
|
|
86
86
|
"/docs",
|
|
87
|
-
"/oclif.manifest.json"
|
|
87
|
+
"/oclif.manifest.json",
|
|
88
|
+
"npm-shrinkwrap.json"
|
|
88
89
|
],
|
|
89
90
|
"homepage": "https://shipth.is",
|
|
90
91
|
"keywords": [
|
|
@@ -207,9 +208,9 @@
|
|
|
207
208
|
"build-tsc-alias": "shx rm -rf dist && npx tsc --build && npx tsc-alias -p tsconfig.json",
|
|
208
209
|
"build": "pkgroll --clean-dist",
|
|
209
210
|
"lint": "eslint . --ext .ts",
|
|
210
|
-
"postpack": "shx rm -f oclif.manifest.json",
|
|
211
211
|
"posttest": "npm run lint",
|
|
212
|
-
"prepack": "npm run readme && oclif manifest && npm shrinkwrap",
|
|
212
|
+
"prepack": "cp package-lock.json package-lock.dev.json || true && npm run readme && oclif manifest && npm shrinkwrap",
|
|
213
|
+
"postpack": "mv package-lock.dev.json package-lock.json || true && shx rm -f oclif.manifest.json && shx rm -f npm-shrinkwrap.json",
|
|
213
214
|
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
|
|
214
215
|
"readme": "bin/dev.js internal readme docs/ -d 2 --notDryRun # does not overwrite existing files"
|
|
215
216
|
},
|