Skip to content

Commit

Permalink
Fix require warning re static dependency analysis (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
DamonOehlman committed Jan 7, 2019
1 parent ee05523 commit 88d40da
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 151 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
index.js
index.d.ts
node_modules
npm-debug.log
150 changes: 0 additions & 150 deletions index.js

This file was deleted.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"pretest": "tsc",
"test": "node test",
"lint": "tslint -c tslint.json src/**",
"compile": "tsc",
"compile-and-size": "yarn tsc && cat index.js | gzip | wc -c",
"prepare": "npm run test && npm run lint",
"patch-release": "npm version patch && npm publish && npm run postpublish",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"target": "es5",
"module": "umd",
"module": "commonjs",
"lib": ["es2016", "dom"],
"declaration": true,
"outDir": "./",
Expand Down

0 comments on commit 88d40da

Please sign in to comment.