Skip to content

Commit 4dd0e4f

Browse files
committed
Merge branch 'master' of https://github.com/Quramy/typed-css-modules into using-ts-jest
2 parents a008d52 + a9602f3 commit 4dd0e4f

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

.npmignore

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,10 @@
1-
src/
2-
gulpfile.js
1+
# ignore everything
2+
*
3+
4+
# include these:
5+
!/lib/**/*
6+
!LICENSE.md
7+
!README.md
8+
9+
# exclude hidden files from the includes:
10+
.*

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",
77
"scripts": {
8-
"build": "tsc && chmod +x lib/cli.js",
8+
"clean": "rm -rf lib/",
9+
"build": "yarn clean && tsc && chmod +x lib/cli.js",
910
"test": "jest",
1011
"test:watch": "jest --watch",
1112
"test:ci": "jest --coverage",

0 commit comments

Comments
 (0)