@shopify/create-app 0.33.4 → 0.33.7
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/CHANGELOG.md +18 -0
- package/dist/commands/init.js +11 -10
- package/dist/commands/init.js.map +1 -1
- package/dist/index.js +10 -9
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/templates/app/.gitignore +181 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @shopify/create-app
|
|
2
2
|
|
|
3
|
+
## 0.33.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Add .gitignore to the app template
|
|
8
|
+
|
|
9
|
+
## 0.33.6
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Fix create-app fixing the wrong dependency of @shopify/app
|
|
14
|
+
|
|
15
|
+
## 0.33.5
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Some fixes with external packages
|
|
20
|
+
|
|
3
21
|
## 0.33.4
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/dist/commands/init.js
CHANGED
|
@@ -16,7 +16,6 @@ import url$1, { fileURLToPath } from 'node:url';
|
|
|
16
16
|
import os$6, { userInfo } from 'node:os';
|
|
17
17
|
import require$$0$a from 'buffer';
|
|
18
18
|
import require$$0$9, { promisify as promisify$6 } from 'util';
|
|
19
|
-
import 'open';
|
|
20
19
|
import fs$H, { promises } from 'node:fs';
|
|
21
20
|
import require$$0$b from 'constants';
|
|
22
21
|
import Stream$4 from 'node:stream';
|
|
@@ -30,7 +29,6 @@ import zlib$1 from 'zlib';
|
|
|
30
29
|
import require$$0$d from 'http2';
|
|
31
30
|
import require$$1$3 from 'tls';
|
|
32
31
|
import require$$0$e from 'net';
|
|
33
|
-
import 'keytar';
|
|
34
32
|
import require$$0$f from 'punycode';
|
|
35
33
|
import { Flags, Command } from '@oclif/core';
|
|
36
34
|
|
|
@@ -40340,7 +40338,7 @@ const username = async (platform = platform$1) => {
|
|
|
40340
40338
|
};
|
|
40341
40339
|
|
|
40342
40340
|
var name = "@shopify/cli-kit";
|
|
40343
|
-
var version$
|
|
40341
|
+
var version$2 = "0.33.7";
|
|
40344
40342
|
var description$1 = "A set of utilities, interfaces, and models that are common across all the platform features";
|
|
40345
40343
|
var keywords = [
|
|
40346
40344
|
"shopify",
|
|
@@ -40388,6 +40386,8 @@ var os$1 = [
|
|
|
40388
40386
|
"win32"
|
|
40389
40387
|
];
|
|
40390
40388
|
var dependencies$1 = {
|
|
40389
|
+
open: "^8.4.0",
|
|
40390
|
+
keytar: "^7.9.0"
|
|
40391
40391
|
};
|
|
40392
40392
|
var devDependencies = {
|
|
40393
40393
|
"ansi-colors": "^4.1.1",
|
|
@@ -40402,8 +40402,6 @@ var devDependencies = {
|
|
|
40402
40402
|
"fs-extra": "^10.0.0",
|
|
40403
40403
|
graphql: "^16.3.0",
|
|
40404
40404
|
"graphql-request": "^4.0.0",
|
|
40405
|
-
keytar: "^7.9.0",
|
|
40406
|
-
open: "^8.4.0",
|
|
40407
40405
|
"latest-version": "^6.0.0",
|
|
40408
40406
|
liquidjs: "^9.35.1",
|
|
40409
40407
|
listr2: "^4.0.2",
|
|
@@ -40419,7 +40417,7 @@ var devDependencies = {
|
|
|
40419
40417
|
};
|
|
40420
40418
|
var cliKitPackageJson = {
|
|
40421
40419
|
name: name,
|
|
40422
|
-
version: version$
|
|
40420
|
+
version: version$2,
|
|
40423
40421
|
"private": false,
|
|
40424
40422
|
description: description$1,
|
|
40425
40423
|
keywords: keywords,
|
|
@@ -40439,7 +40437,9 @@ var cliKitPackageJson = {
|
|
|
40439
40437
|
devDependencies: devDependencies
|
|
40440
40438
|
};
|
|
40441
40439
|
|
|
40442
|
-
var version = "0.33.
|
|
40440
|
+
var version$1 = "0.33.7";
|
|
40441
|
+
|
|
40442
|
+
var version = "0.33.7";
|
|
40443
40443
|
|
|
40444
40444
|
const constants = {
|
|
40445
40445
|
environmentVariables: {
|
|
@@ -40461,8 +40461,9 @@ const constants = {
|
|
|
40461
40461
|
}
|
|
40462
40462
|
},
|
|
40463
40463
|
versions: {
|
|
40464
|
-
cliKit: version$
|
|
40465
|
-
cli: version
|
|
40464
|
+
cliKit: version$2,
|
|
40465
|
+
cli: version$1,
|
|
40466
|
+
app: version
|
|
40466
40467
|
},
|
|
40467
40468
|
keychain: {
|
|
40468
40469
|
service: "shopify-cli"
|
|
@@ -147153,7 +147154,7 @@ async function init(options) {
|
|
|
147153
147154
|
const user = await username() ?? "";
|
|
147154
147155
|
const templatePath = await template("app");
|
|
147155
147156
|
const cliPackageVersion = constants.versions.cli;
|
|
147156
|
-
const appPackageVersion = constants.versions.
|
|
147157
|
+
const appPackageVersion = constants.versions.app;
|
|
147157
147158
|
const dependencyOverrides = {};
|
|
147158
147159
|
if (options.shopifyCliVersion) {
|
|
147159
147160
|
dependencyOverrides["@shopify/cli"] = options.shopifyCliVersion;
|