Skip to content

Commit

Permalink
fix(build): the "files" property should be included in pkg.json
Browse files Browse the repository at this point in the history
- on the other end we shouldn't include "directories", it should be "files" only that we want to include
  • Loading branch information
ghiscoding committed Jul 6, 2021
1 parent 00f2db2 commit 3d8f12e
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 24 deletions.
6 changes: 3 additions & 3 deletions packages/binding/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"publishConfig": {
"access": "public"
},
"directories": {
"src": "src"
},
"files": [
"/dist"
],
"scripts": {
"build": "cross-env tsc --build",
"postbuild": "npm-run-all bundle:commonjs",
Expand Down
6 changes: 3 additions & 3 deletions packages/composite-editor-component/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"publishConfig": {
"access": "public"
},
"directories": {
"src": "src"
},
"files": [
"/dist"
],
"scripts": {
"build": "cross-env tsc --build",
"postbuild": "npm-run-all bundle:commonjs",
Expand Down
6 changes: 3 additions & 3 deletions packages/custom-footer-component/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"publishConfig": {
"access": "public"
},
"directories": {
"src": "src"
},
"files": [
"/dist"
],
"scripts": {
"build": "cross-env tsc --build",
"postbuild": "npm-run-all bundle:commonjs",
Expand Down
6 changes: 3 additions & 3 deletions packages/empty-warning-component/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"publishConfig": {
"access": "public"
},
"directories": {
"src": "src"
},
"files": [
"/dist"
],
"scripts": {
"build": "cross-env tsc --build",
"postbuild": "npm-run-all bundle:commonjs",
Expand Down
6 changes: 3 additions & 3 deletions packages/event-pub-sub/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"publishConfig": {
"access": "public"
},
"directories": {
"src": "src"
},
"files": [
"/dist"
],
"scripts": {
"build": "cross-env tsc --build",
"postbuild": "npm-run-all bundle:commonjs",
Expand Down
6 changes: 3 additions & 3 deletions packages/pagination-component/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"publishConfig": {
"access": "public"
},
"directories": {
"src": "src"
},
"files": [
"/dist"
],
"scripts": {
"build": "cross-env tsc --build",
"postbuild": "npm-run-all bundle:commonjs",
Expand Down
6 changes: 3 additions & 3 deletions packages/rxjs-observable/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"publishConfig": {
"access": "public"
},
"directories": {
"src": "src"
},
"files": [
"/dist"
],
"scripts": {
"build": "cross-env tsc --build",
"postbuild": "npm-run-all bundle:commonjs",
Expand Down
6 changes: 3 additions & 3 deletions packages/vanilla-bundle/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"publishConfig": {
"access": "public"
},
"directories": {
"src": "src"
},
"files": [
"/dist"
],
"scripts": {
"test": "echo testing slickgrid-universal slickgrid-vanilla-bundle code",
"dev": "webpack --env development",
Expand Down

0 comments on commit 3d8f12e

Please sign in to comment.