We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20bd74d commit f8d1bbdCopy full SHA for f8d1bbd
.github/workflows/release.yaml
@@ -62,7 +62,12 @@ jobs:
62
dist
63
key: build-cache-${{ github.run_id }}-${{ github.run_attempt }}
64
65
+ - name: Setup Chrome
66
+ uses: browser-actions/setup-chrome@v2
67
+ with:
68
+ install-chromedriver: true
69
+
70
- name: Run semantic release
71
run: npm run semantic-release
72
env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
73
+ GITHUB_TOKEN: ${{ steps.vault.outputs.GITHUB_TOKEN }}
package.json
@@ -6,9 +6,9 @@
6
"type": "module",
7
"exports": {
8
".": {
9
+ "types": "./dist/types/index.d.ts",
10
"import": "./dist/esm/index.js",
- "require": "./dist/contentful.cjs",
11
- "types": "./dist/types/index.d.ts"
+ "require": "./dist/contentful.cjs"
12
}
13
},
14
"main": "./dist/esm/index.js",
0 commit comments