Skip to content

Commit

Permalink
rewrite es6 imports
Browse files Browse the repository at this point in the history
  • Loading branch information
gcanti committed Dec 18, 2019
1 parent c7209fc commit 8be0cf8
Show file tree
Hide file tree
Showing 2 changed files with 85 additions and 2 deletions.
81 changes: 81 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,13 @@
"fix-prettier": "prettier --no-semi --single-quote --print-width 120 --parser typescript --write \"{src,test,examples}/**/*.ts\"",
"test": "npm run prettier && npm run lint && npm run dtslint && npm run jest && npm run docs",
"clean": "rimraf lib/* es6/*",
"build": "npm run clean && tsc && tsc -p tsconfig.es6.json",
"build": "npm run clean && tsc && tsc -p tsconfig.es6.json && npm run import-path-rewrite",
"prepublish": "npm run build",
"docs-fix-prettier": "prettier --no-semi --single-quote --print-width 120 --parser markdown --write \"README.md\"",
"dtslint": "dtslint dtslint",
"mocha": "TS_NODE_CACHE=false mocha -r ts-node/register test/*.ts",
"docs": "docs-ts"
"docs": "docs-ts",
"import-path-rewrite": "import-path-rewrite"
},
"repository": {
"type": "git",
Expand All @@ -44,6 +45,7 @@
"docs-ts": "^0.3.0",
"dtslint": "github:gcanti/dtslint",
"fp-ts": "^2.0.0",
"import-path-rewrite": "github:gcanti/import-path-rewrite",
"jest": "^24.3.0",
"mocha": "^5.2.0",
"prettier": "^1.15.3",
Expand Down

0 comments on commit 8be0cf8

Please sign in to comment.