-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from amir78729/fix-rollup
Fix rollup
- Loading branch information
Showing
9 changed files
with
67 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
pnpm-lock.yaml | ||
dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# Ignore artifacts: | ||
build | ||
coverage | ||
pnpm-lock.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,25 @@ | ||
{ | ||
"name": "daftar-naghashi", | ||
"author": { | ||
"name": "Amirhossein Alibakhshi", | ||
"email": "[email protected]" | ||
}, | ||
"keywords": [ | ||
"paint", | ||
"react", | ||
"draw" | ||
], | ||
"version": "0.0.0", | ||
"type": "module", | ||
"scripts": { | ||
"build": "rollup -c", | ||
"build": "pnpm clean && pnpm build:types && pnpm build:rollup", | ||
"clean": "rm -rf dist", | ||
"build:types": "tsc --declaration true --emitDeclarationOnly true --outDir dist --noEmit false", | ||
"build:rollup": "rollup -c", | ||
"build:storybook": "storybook build", | ||
"lint": "eslint .", | ||
"format": "pnpm exec prettier . --write", | ||
"storybook": "storybook dev -p 6006", | ||
"build-storybook": "storybook build" | ||
"storybook": "storybook dev -p 6006" | ||
}, | ||
"dependencies": { | ||
"react": "^18.3.1", | ||
|
@@ -55,10 +67,10 @@ | |
"plugin:storybook/recommended" | ||
] | ||
}, | ||
"main": "dist/cjs/index.js", | ||
"module": "dist/esm/index.js", | ||
"files": [ | ||
"dist" | ||
], | ||
"main": "dist/cjs/index.js", | ||
"module": "dist/esm/index.js", | ||
"types": "dist/index.d.ts" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters