Skip to content

Commit

Permalink
chore: define released files (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
tonai authored Oct 20, 2023
1 parent ffe24fc commit 94a211c
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 1 deletion.
8 changes: 8 additions & 0 deletions packages/react-front-kit-dropzone/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,14 @@
"main": "./dist/index.js",
"module": "./src/index.tsx",
"types": "./dist/index.d.ts",
"files": [
"CHANGELOG.md",
"LICENSE",
"package.json",
"README.md",
"dist",
"src"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "jest",
Expand Down
8 changes: 8 additions & 0 deletions packages/react-front-kit-shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,14 @@
"main": "./dist/index.js",
"module": "./src/index.tsx",
"types": "./dist/index.d.ts",
"files": [
"CHANGELOG.md",
"LICENSE",
"package.json",
"README.md",
"dist",
"src"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "jest",
Expand Down
8 changes: 8 additions & 0 deletions packages/react-front-kit-table/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,14 @@
"main": "./dist/index.js",
"module": "./src/index.tsx",
"types": "./dist/index.d.ts",
"files": [
"CHANGELOG.md",
"LICENSE",
"package.json",
"README.md",
"dist",
"src"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "jest",
Expand Down
8 changes: 8 additions & 0 deletions packages/react-front-kit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,14 @@
"main": "./dist/index.js",
"module": "./src/index.tsx",
"types": "./dist/index.d.ts",
"files": [
"CHANGELOG.md",
"LICENSE",
"package.json",
"README.md",
"dist",
"src"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "jest",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "tsconfig/react-library.json",
"include": [".", ".storybook/*"],
"exclude": ["apps"]
"exclude": ["apps", "out", ".husky", ".changeset", ".github"]
}

0 comments on commit 94a211c

Please sign in to comment.