@shopify/oxygen-cli 4.6.19-unstable.202504171409.0 → 4.6.19-unstable.202504180912.0
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 +1 -0
- package/dist/index.js +3 -4
- package/dist/index.js.map +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
@@ -6,6 +6,7 @@
|
|
6
6
|
|
7
7
|
- e507108: Update @changesets/cli from 2.29.0 to 2.29.1
|
8
8
|
- b9ef01a: Update vite from 6.2.6 to 6.3.0
|
9
|
+
- 817a449: use launchCLI from @shopify/cli-kit to launch, bump @shopify/cli-kit version constraint
|
9
10
|
- 5c54c1c: Use Observe proxy for Bugsnag notifier
|
10
11
|
|
11
12
|
## 4.6.17
|
package/dist/index.js
CHANGED
@@ -1,9 +1,8 @@
|
|
1
|
-
import {
|
1
|
+
import { launchCLI } from '@shopify/cli-kit/node/cli-launcher';
|
2
2
|
|
3
3
|
async function runOxygenCLI() {
|
4
|
-
await
|
5
|
-
moduleURL: import.meta.url
|
6
|
-
development: false
|
4
|
+
await launchCLI({
|
5
|
+
moduleURL: import.meta.url
|
7
6
|
});
|
8
7
|
}
|
9
8
|
var index_default = runOxygenCLI;
|
package/dist/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;AAEA,eAAe,YAAe,GAAA;AAC5B,EAAA,MAAM,
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;AAEA,eAAe,YAAe,GAAA;AAC5B,EAAA,MAAM,SAAU,CAAA;AAAA,IACd,WAAW,MAAY,CAAA,IAAA,CAAA;AAAA,GACxB,CAAA;AACH;AAEA,IAAO,aAAQ,GAAA","file":"index.js","sourcesContent":["import {launchCLI} from '@shopify/cli-kit/node/cli-launcher';\n\nasync function runOxygenCLI() {\n await launchCLI({\n moduleURL: import.meta.url,\n });\n}\n\nexport default runOxygenCLI;\n"]}
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
"@shopify:registry": "https://registry.npmjs.org"
|
6
6
|
},
|
7
7
|
"license": "MIT",
|
8
|
-
"version": "4.6.19-unstable.
|
8
|
+
"version": "4.6.19-unstable.202504180912.0",
|
9
9
|
"type": "module",
|
10
10
|
"scripts": {
|
11
11
|
"build": "tsup --sourcemap --clean --config ./tsup.config.ts && oclif manifest",
|
@@ -43,8 +43,8 @@
|
|
43
43
|
"graphql-request": "^7.1.2"
|
44
44
|
},
|
45
45
|
"peerDependencies": {
|
46
|
-
"@oclif/core": "^3.
|
47
|
-
"@shopify/cli-kit": "^3.
|
46
|
+
"@oclif/core": "^3.26.5",
|
47
|
+
"@shopify/cli-kit": "^3.78.1"
|
48
48
|
},
|
49
49
|
"devDependencies": {
|
50
50
|
"@bugsnag/source-maps": "^2.3.3",
|