@salesforce/b2c-cli 0.0.0-nightly.20260120023917 → 0.0.0-nightly.20260121023856
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/dist/commands/setup/skills.d.ts +40 -0
- package/dist/commands/setup/skills.js +296 -0
- package/dist/commands/setup/skills.js.map +1 -0
- package/dist/i18n/locales/en.d.ts +25 -0
- package/dist/i18n/locales/en.js +29 -0
- package/dist/i18n/locales/en.js.map +1 -1
- package/dist/i18n/locales/index.d.ts +25 -0
- package/oclif.manifest.json +1241 -1046
- package/package.json +6 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/b2c-cli",
|
|
3
3
|
"description": "A Salesforce Commerce Cloud B2C CLI",
|
|
4
|
-
"version": "0.0.0-nightly.
|
|
4
|
+
"version": "0.0.0-nightly.20260121023856",
|
|
5
5
|
"author": "Charles Lavery",
|
|
6
6
|
"bin": {
|
|
7
7
|
"b2c": "./bin/run.js"
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"registry": "https://registry.npmjs.org/"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
+
"@inquirer/prompts": "^8.2.0",
|
|
15
16
|
"@oclif/core": "^4",
|
|
16
17
|
"@oclif/plugin-autocomplete": "^3",
|
|
17
18
|
"@oclif/plugin-help": "^6",
|
|
@@ -22,7 +23,7 @@
|
|
|
22
23
|
"marked": "^15.0.0",
|
|
23
24
|
"marked-terminal": "^7.3.0",
|
|
24
25
|
"open": "^11.0.0",
|
|
25
|
-
"@salesforce/b2c-tooling-sdk": "0.0.0-nightly.
|
|
26
|
+
"@salesforce/b2c-tooling-sdk": "0.0.0-nightly.20260121023856"
|
|
26
27
|
},
|
|
27
28
|
"devDependencies": {
|
|
28
29
|
"@eslint/compat": "^1",
|
|
@@ -131,6 +132,9 @@
|
|
|
131
132
|
"description": "Browse and retrieve SCAPI schema specifications"
|
|
132
133
|
}
|
|
133
134
|
}
|
|
135
|
+
},
|
|
136
|
+
"setup": {
|
|
137
|
+
"description": "Setup commands for development environment"
|
|
134
138
|
}
|
|
135
139
|
}
|
|
136
140
|
},
|