Skip to content

Commit 30bead4

Browse files
committed
adding missing typings file
1 parent 4bf8088 commit 30bead4

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,3 @@ node_modules
2929

3030
www/
3131
config.json
32-
typings

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
"scripts": {
77
"start": "webpack-dev-server --port 8080 --json --progress --config webpack.config.js",
88
"build": "npm run dumpdev && npm run dumpprod",
9-
"publish": "npm run build && npm publish dist",
109
"dumpdev": "ENV=dev webpack --progress --colors --config webpack.config.dist.js -d",
1110
"dumpprod": "ENV=prod webpack --progress --colors --config webpack.config.dist.js -p",
1211
"watch": "ENV=dev webpack --watch --progress --colors --config webpack.config.dist.js -d",

typings/.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*
2+
!.gitignore
3+
!overwrite.d.ts

typings/overwrite.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
declare function require(string): any;

0 commit comments

Comments
 (0)