@shopify/create-hydrogen 0.33.3 → 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 +24 -0
- package/dist/commands/init.js +10 -9
- package/dist/commands/init.js.map +1 -1
- package/dist/index.js +10 -9
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @shopify/create-hydrogen
|
|
2
2
|
|
|
3
|
+
## 0.33.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Add .gitignore to the app template
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @shopify/cli-hydrogen@0.33.7
|
|
10
|
+
- @shopify/cli-kit@0.33.7
|
|
11
|
+
|
|
12
|
+
## 0.33.6
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @shopify/cli-kit@0.33.6
|
|
18
|
+
|
|
19
|
+
## 0.33.5
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Some fixes with external packages
|
|
24
|
+
- Updated dependencies
|
|
25
|
+
- @shopify/cli-kit@0.33.5
|
|
26
|
+
|
|
3
27
|
## 0.33.3
|
|
4
28
|
|
|
5
29
|
### 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
|
|
|
@@ -40342,7 +40340,7 @@ const username = async (platform = platform$1) => {
|
|
|
40342
40340
|
};
|
|
40343
40341
|
|
|
40344
40342
|
var name = "@shopify/cli-kit";
|
|
40345
|
-
var version$
|
|
40343
|
+
var version$2 = "0.33.7";
|
|
40346
40344
|
var description$1 = "A set of utilities, interfaces, and models that are common across all the platform features";
|
|
40347
40345
|
var keywords = [
|
|
40348
40346
|
"shopify",
|
|
@@ -40390,6 +40388,8 @@ var os$1 = [
|
|
|
40390
40388
|
"win32"
|
|
40391
40389
|
];
|
|
40392
40390
|
var dependencies$1 = {
|
|
40391
|
+
open: "^8.4.0",
|
|
40392
|
+
keytar: "^7.9.0"
|
|
40393
40393
|
};
|
|
40394
40394
|
var devDependencies = {
|
|
40395
40395
|
"ansi-colors": "^4.1.1",
|
|
@@ -40404,8 +40404,6 @@ var devDependencies = {
|
|
|
40404
40404
|
"fs-extra": "^10.0.0",
|
|
40405
40405
|
graphql: "^16.3.0",
|
|
40406
40406
|
"graphql-request": "^4.0.0",
|
|
40407
|
-
keytar: "^7.9.0",
|
|
40408
|
-
open: "^8.4.0",
|
|
40409
40407
|
"latest-version": "^6.0.0",
|
|
40410
40408
|
liquidjs: "^9.35.1",
|
|
40411
40409
|
listr2: "^4.0.2",
|
|
@@ -40421,7 +40419,7 @@ var devDependencies = {
|
|
|
40421
40419
|
};
|
|
40422
40420
|
var cliKitPackageJson = {
|
|
40423
40421
|
name: name,
|
|
40424
|
-
version: version$
|
|
40422
|
+
version: version$2,
|
|
40425
40423
|
"private": false,
|
|
40426
40424
|
description: description$1,
|
|
40427
40425
|
keywords: keywords,
|
|
@@ -40441,7 +40439,9 @@ var cliKitPackageJson = {
|
|
|
40441
40439
|
devDependencies: devDependencies
|
|
40442
40440
|
};
|
|
40443
40441
|
|
|
40444
|
-
var version = "0.33.
|
|
40442
|
+
var version$1 = "0.33.7";
|
|
40443
|
+
|
|
40444
|
+
var version = "0.33.7";
|
|
40445
40445
|
|
|
40446
40446
|
const constants = {
|
|
40447
40447
|
environmentVariables: {
|
|
@@ -40463,8 +40463,9 @@ const constants = {
|
|
|
40463
40463
|
}
|
|
40464
40464
|
},
|
|
40465
40465
|
versions: {
|
|
40466
|
-
cliKit: version$
|
|
40467
|
-
cli: version
|
|
40466
|
+
cliKit: version$2,
|
|
40467
|
+
cli: version$1,
|
|
40468
|
+
app: version
|
|
40468
40469
|
},
|
|
40469
40470
|
keychain: {
|
|
40470
40471
|
service: "shopify-cli"
|