Skip to content

Commit

Permalink
Fix: publishing ignores some of dist folders (#2003)
Browse files Browse the repository at this point in the history
* fix: an issue with npm packing and not publishing all dist folders

* fix: an issue with npm packing and not publishing all dist folders
  • Loading branch information
arunvishnun authored Jan 8, 2024
1 parent 54d99aa commit 3f5b6ab
Show file tree
Hide file tree
Showing 12 changed files with 84 additions and 11 deletions.
10 changes: 10 additions & 0 deletions common/changes/@xarc/react-query/fix-packing_2024-01-08-20-20.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@xarc/react-query",
"comment": "Fix an issue with npm packing and not publishing all dist folders",
"type": "patch"
}
],
"packageName": "@xarc/react-query"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@xarc/react-recoil",
"comment": "Fix an issue with npm packing and not publishing all dist folders",
"type": "patch"
}
],
"packageName": "@xarc/react-recoil"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@xarc/react-redux-observable",
"comment": "Fix an issue with npm packing and not publishing all dist folders",
"type": "patch"
}
],
"packageName": "@xarc/react-redux-observable"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@xarc/react-redux-saga",
"comment": "Fix an issue with npm packing and not publishing all dist folders",
"type": "patch"
}
],
"packageName": "@xarc/react-redux-saga"
}
10 changes: 10 additions & 0 deletions common/changes/@xarc/react-redux/fix-packing_2024-01-08-20-20.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@xarc/react-redux",
"comment": "Fix an issue with npm packing and not publishing all dist folders",
"type": "patch"
}
],
"packageName": "@xarc/react-redux"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@xarc/react-router",
"comment": "Fix an issue with npm packing and not publishing all dist folders",
"type": "patch"
}
],
"packageName": "@xarc/react-router"
}
5 changes: 4 additions & 1 deletion packages/xarc-react-query/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,10 @@
},
"files": [
"dist",
"dist*",
"dist-browser~es2x~esm~",
"dist-browser~es5~cjs~",
"dist-node-cjs",
"dist-node-esm",
"src"
],
"nyc": {
Expand Down
6 changes: 4 additions & 2 deletions packages/xarc-react-recoil/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,10 @@
"typescript": "^4.1.3"
},
"files": [
"dist",
"dist*",
"dist-browser~es2x~esm~",
"dist-browser~es5~cjs~",
"dist-node-cjs",
"dist-node-esm",
"src"
],
"nyc": {
Expand Down
6 changes: 4 additions & 2 deletions packages/xarc-react-redux-observable/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,10 @@
"typescript": "^4.1.3"
},
"files": [
"dist",
"dist*",
"dist-browser~es2x~esm~",
"dist-browser~es5~cjs~",
"dist-node-cjs",
"dist-node-esm",
"src"
],
"nyc": {
Expand Down
6 changes: 4 additions & 2 deletions packages/xarc-react-redux-saga/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,10 @@
"typescript": "^4.1.3"
},
"files": [
"dist",
"dist*",
"dist-browser~es2x~esm~",
"dist-browser~es5~cjs~",
"dist-node-cjs",
"dist-node-esm",
"src"
],
"nyc": {
Expand Down
6 changes: 4 additions & 2 deletions packages/xarc-react-redux/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,10 @@
"typescript": "^4.9.3"
},
"files": [
"dist",
"dist*",
"dist-browser~es2x~esm~",
"dist-browser~es5~cjs~",
"dist-node-cjs",
"dist-node-esm",
"src"
],
"nyc": {
Expand Down
6 changes: 4 additions & 2 deletions packages/xarc-react-router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,10 @@
"@types/react": "^18.0.9"
},
"files": [
"dist",
"dist*",
"dist-browser~es2x~esm~",
"dist-browser~es5~cjs~",
"dist-node-cjs",
"dist-node-esm",
"src"
],
"nyc": {
Expand Down

0 comments on commit 3f5b6ab

Please sign in to comment.