Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f7c34a0

Browse files
committed
Add storybook-static to ignore path
1 parent 718a1e7 commit f7c34a0

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

.eslintignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@
22
# COPY PASTA OF .gitignore
33
###############################################################################
44
node_modules
5-
vendor
5+
vendor
6+
7+
# Storybook
8+
storybook-static/

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,7 @@ coverage/
2121

2222
# Build
2323
bin/
24-
site/out/
24+
site/out/
25+
26+
# Storybook
27+
storybook-static/

.prettierignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,7 @@ yarn-error.log
1414
.next/
1515
site/.next/
1616
site/out/
17-
coverage/
17+
coverage/
18+
19+
# Storybook
20+
storybook-static/

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"lint": "jest --selectProjects lint",
1414
"lint:fix": "FIX=true yarn lint",
1515
"storybook": "start-storybook -p 6006 -s ./site/static",
16+
"storybook:build": "build-storybook",
1617
"test": "jest --selectProjects test",
1718
"test:coverage": "jest --selectProjects test --collectCoverage"
1819
},

0 commit comments

Comments
 (0)