Skip to content

Commit da15e22

Browse files
authored
Merge branch 'release/v4-beta' into v4-release
2 parents 4512e08 + 7dc2e49 commit da15e22

File tree

4 files changed

+16
-14
lines changed

4 files changed

+16
-14
lines changed

.github/workflows/npm-publish.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
node-version: '18.x'
1717
registry-url: 'https://registry.npmjs.org'
1818
- run: npm ci
19-
- run: npm publish
19+
- run: npm publish --tag beta
2020
env:
2121
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2222
publish-git:
@@ -29,6 +29,6 @@ jobs:
2929
registry-url: 'https://npm.pkg.github.com'
3030
scope: '@contentstack'
3131
- run: npm ci
32-
- run: npm publish
32+
- run: npm publish --tag beta
3333
env:
3434
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.talismanrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ fileignoreconfig:
44
- filename: test/utils/mocks.ts
55
checksum: a1cb4b1890a584f1facd30f2a0974c97a66f91417022be79d00516338e244227
66
- filename: package-lock.json
7-
checksum: 20eaa357c4e4634bd888e3d2c3af8f88934428ea7c6669aaa99e18934f82d949
7+
checksum: ed6e5d36030448030ea8e0ec251b57481be80366b1cfde6a1b47879de8d006c0
88
- filename: test/typescript/taxonomy.test.ts
99
checksum: e4bdf633e147fd60d929d379f20c814eed5f68b11421d7b53ec8826e9142de37
1010
- filename: src/core/modules/taxonomy.js

package-lock.json

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
11
{
22
"name": "@contentstack/delivery-sdk",
3-
"version": "4.0.0",
3+
"version": "4.0.0-beta.1",
44
"type": "commonjs",
55
"main": "./dist/cjs/src/index.js",
66
"types": "./dist/types/src/index.d.ts",
7+
"publishConfig": {
8+
"tag": "beta"
9+
},
710
"scripts": {
811
"prepack": "npm run test",
912
"test": "jest ./test/unit",
1013
"test:unit": "jest ./test/unit",
1114
"test:api": "jest ./test/api",
1215
"lint": "eslint . -c .eslintrc.json",
1316
"clean": "node tools/cleanup",
14-
"package": "npm run build && npm pack",
17+
"package": "npm run build && npm pack",
1518
"build": "npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:types",
1619
"build:cjs": "node tools/cleanup cjs && tsc -p config/tsconfig.cjs.json",
1720
"build:esm": "node tools/cleanup esm && tsc -p config/tsconfig.esm.json",
@@ -22,7 +25,6 @@
2225
"@contentstack/core": "^1.0.1",
2326
"@contentstack/utils": "^1.3.1",
2427
"@types/humps": "^2.0.6",
25-
2628
"dotenv": "^16.3.1",
2729
"humps": "^2.0.1"
2830
},

0 commit comments

Comments
 (0)