We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5643102 + 201dbb5 commit 13c3f0cCopy full SHA for 13c3f0c
2 files changed
.github/workflows/release.yml
@@ -48,7 +48,6 @@ jobs:
48
cwd: "./wp-react-lib"
49
env:
50
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
51
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
52
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
+ NPM_CONFIG_PROVENANCE: false
53
54
wp-react-lib/package.json
@@ -63,6 +63,21 @@
63
"types": "./dist/types/index.d.ts",
64
"import": "./dist/esm/index.js",
65
"require": "./dist/cjs/index.js"
66
+ },
67
+ "./api": {
68
+ "types": "./dist/types/api/index.d.ts",
69
+ "import": "./dist/esm/api/index.js",
70
+ "require": "./dist/cjs/api/index.js"
71
72
+ "./hooks": {
73
+ "types": "./dist/types/hooks/index.d.ts",
74
+ "import": "./dist/esm/hooks/index.js",
75
+ "require": "./dist/cjs/hooks/index.js"
76
77
+ "publishConfig": {
78
+ "access": "public",
79
+ "provenance": false
80
+
81
}
82
83
0 commit comments