Skip to content

Commit

Permalink
chore: add files entry to all package.json manifests
Browse files Browse the repository at this point in the history
  • Loading branch information
adidahiya committed May 8, 2023
1 parent 6e498bd commit b930792
Show file tree
Hide file tree
Showing 8 changed files with 39 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@
"typings": "lib/esm/index.d.ts",
"style": "lib/css/blueprint.css",
"unpkg": "dist/core.bundle.js",
"files": [
"dist",
"lib",
"scripts",
"src"
],
"sideEffects": [
"**/*.css",
"lib/esm/components/index.js",
Expand Down
5 changes: 5 additions & 0 deletions packages/datetime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
"typings": "lib/esm/index.d.ts",
"style": "lib/css/blueprint-datetime.css",
"unpkg": "dist/datetime.bundle.js",
"files": [
"dist",
"lib",
"src"
],
"sideEffects": [
"**/*.css"
],
Expand Down
4 changes: 4 additions & 0 deletions packages/datetime2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
"sideEffects": [
"**/*.css"
],
"files": [
"lib",
"src"
],
"scripts": {
"clean": "rm -rf dist/* && rm -rf lib/*",
"compile": "run-p \"compile:*\"",
Expand Down
5 changes: 5 additions & 0 deletions packages/docs-theme/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
"typings": "lib/esm/index.d.ts",
"style": "lib/css/docs-theme.css",
"unpkg": "dist/docs-theme.bundle.js",
"files": [
"dist",
"lib",
"src"
],
"sideEffects": [
"**/*.css"
],
Expand Down
4 changes: 4 additions & 0 deletions packages/monaco-editor-theme/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
"module": "lib/esm/index.js",
"esnext": "lib/esnext/index.js",
"typings": "lib/esm/index.d.ts",
"files": [
"lib",
"src"
],
"sideEffects": [],
"scripts": {
"clean": "rm -rf dist/* && rm -rf lib/*",
Expand Down
5 changes: 5 additions & 0 deletions packages/popover2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
"typings": "lib/esm/index.d.ts",
"style": "lib/css/blueprint-popover2.css",
"unpkg": "dist/popover2.bundle.js",
"files": [
"dist",
"lib",
"src"
],
"sideEffects": [
"**/*.css"
],
Expand Down
5 changes: 5 additions & 0 deletions packages/select/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
"typings": "lib/esm/index.d.ts",
"style": "lib/css/blueprint-select.css",
"unpkg": "dist/select.bundle.js",
"files": [
"dist",
"lib",
"src"
],
"sideEffects": [
"**/*.css"
],
Expand Down
5 changes: 5 additions & 0 deletions packages/table/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
"typings": "lib/esm/index.d.ts",
"style": "lib/css/table.css",
"unpkg": "dist/table.bundle.js",
"files": [
"dist",
"lib",
"src"
],
"sideEffects": [
"**/*.css"
],
Expand Down

0 comments on commit b930792

Please sign in to comment.