Skip to content

Commit 48a93e3

Browse files
committed
more testing
1 parent 2ff51f3 commit 48a93e3

File tree

5 files changed

+23
-4
lines changed

5 files changed

+23
-4
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,9 @@ jobs:
6767
cache: 'pnpm'
6868
registry-url: 'https://registry.npmjs.org'
6969

70+
- name: Upgrade npm for trusted publishing
71+
run: npm install -g npm@latest
72+
7073
- name: Install dependencies
7174
run: pnpm install --frozen-lockfile
7275

packages/b2c-cli/package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
{
22
"name": "@sfcc-dx-testing/b2c-cli",
33
"description": "A Salesforce Commerce Cloud B2C CLI",
4-
"version": "0.0.3-preview",
4+
"version": "0.0.4-preview",
55
"author": "Charles Lavery",
66
"bin": {
77
"b2c": "./bin/run.js"
88
},
99
"bugs": "https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/issues",
10+
"publishConfig": {
11+
"access": "public",
12+
"registry": "https://registry.npmjs.org/"
13+
},
1014
"dependencies": {
1115
"@oclif/core": "^4",
1216
"@oclif/plugin-autocomplete": "^3",

packages/b2c-dx-mcp/package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sfcc-dx-testing/b2c-dx-mcp",
3-
"version": "0.0.3-preview",
3+
"version": "0.0.4-preview",
44
"description": "MCP server for B2C Commerce Cloud developer experience tools",
55
"author": "Salesforce",
66
"license": "MIT",
@@ -14,6 +14,10 @@
1414
"tooling"
1515
],
1616
"type": "module",
17+
"publishConfig": {
18+
"access": "public",
19+
"registry": "https://registry.npmjs.org/"
20+
},
1721
"main": "dist/commands/mcp.js",
1822
"types": "dist/commands/mcp.d.ts",
1923
"bin": {

packages/b2c-plugin-example-config/package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
{
22
"name": "@sfcc-dx-testing/b2c-plugin-example-config",
3-
"version": "0.0.3-preview",
3+
"version": "0.0.4-preview",
44
"description": "Example plugin demonstrating custom config source for B2C CLI",
55
"author": "Salesforce Commerce Cloud",
66
"license": "Apache-2.0",
77
"type": "module",
8+
"publishConfig": {
9+
"access": "public",
10+
"registry": "https://registry.npmjs.org/"
11+
},
812
"main": "dist/index.js",
913
"types": "dist/index.d.ts",
1014
"files": [

packages/b2c-tooling-sdk/package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sfcc-dx-testing/b2c-tooling-sdk",
3-
"version": "0.0.3-preview",
3+
"version": "0.0.4-preview",
44
"description": "Core tooling library for Salesforce Commerce Cloud B2C CLI",
55
"author": "Charles Lavery",
66
"license": "Apache-2.0",
@@ -12,6 +12,10 @@
1212
"tooling"
1313
],
1414
"type": "module",
15+
"publishConfig": {
16+
"access": "public",
17+
"registry": "https://registry.npmjs.org/"
18+
},
1519
"exports": {
1620
"./package.json": "./package.json",
1721
".": {

0 commit comments

Comments
 (0)