Skip to content

Commit 0530d02

Browse files
mwczkylebuch8
authored andcommitted
minify ES6 modules (#281)
* minify ES6 modules * oops, don't format scss
1 parent fdb6301 commit 0530d02

37 files changed

+28591
-37818
lines changed

.prettierignore

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
test
2-
*.umd.js
3-
*.min.js
42
package.json
53
package-lock.json
4+
5+
# Package JS file ignores, variant 1
6+
#
7+
# These ignore paths are for when prettier via 'lerna run' which cd's into each
8+
# package's dir, so they are relative to the package dirs.
9+
10+
/**/*
11+
!/src/*.js
12+
!/gulpfile.js
13+
!/rollup.config.js
14+
!/*.story.js
15+
16+
# Package JS file ignores, variant 2
17+
#
18+
# These ignore paths are for repo-wide prettier runs (like pre-commit hooks)
19+
# where the working directory is the repo root.
20+
21+
elements/*/**/*
22+
!elements/*/src/*.js
23+
!elements/*/gulpfile.js
24+
!elements/*/rollup.config.js
25+
!elements/*/*.story.js
26+
themes/*/**/*
27+
!themes/*/src/*.js
28+
!themes/*/gulpfile.js
29+
!themes/*/rollup.config.js
30+
!themes/*/*.story.js

0 commit comments

Comments
 (0)