We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83c444d commit 2c9fbf9Copy full SHA for 2c9fbf9
1 file changed
package.json
@@ -30,14 +30,15 @@
30
"dist"
31
],
32
"scripts": {
33
- "build": "rollup -c",
+ "build": "yarn copy-definitionfile && rollup -c",
34
"build-storybook": "build-storybook",
35
"lint": "eslint \"**/*.{ts,tsx}\" --cache --max-warnings 0",
36
"prepack": "yarn build",
37
"prepare-pr": "yarn prettier . --write && yarn lint && yarn build && yarn test\"",
38
"prettier-check": "prettier --check .",
39
"prettier-write": "prettier --write .",
40
- "start": "rollup -c -w",
+ "copy-definitionfile":"shx cp -r src/react-table.d.ts dist/react-table.d.ts",
41
+ "start": "yarn copy-definitionfile && rollup -c -w",
42
"start-all": "concurrently \"yarn start\" \"yarn start-yalc\"",
43
"start-yalc": "yarn nodemon --watch dist -x \"yarn yalc push\"",
44
"storybook": "start-storybook -p 6006",
0 commit comments