Skip to content

Commit

Permalink
transpile output
Browse files Browse the repository at this point in the history
  • Loading branch information
theKashey committed Nov 9, 2018
1 parent 9b9dfdc commit b7a3a4d
Show file tree
Hide file tree
Showing 5 changed files with 2,335 additions and 3 deletions.
18 changes: 18 additions & 0 deletions .babelrc
@@ -0,0 +1,18 @@
{
"presets": [],
"env": {
"cjs": {
"presets": [
[
"env",
{
"targets": {
"node": "7.0",
"ie": 11
}
}
]
]
}
}
}
2 changes: 1 addition & 1 deletion .gitignore
@@ -1,5 +1,5 @@
node_modules

lib
*.idea
*.iml
.DS_Store
Expand Down
9 changes: 7 additions & 2 deletions package.json
Expand Up @@ -2,9 +2,11 @@
"name": "wipe-node-cache",
"version": "2.0.0",
"description": "Wipes node.js cache in a controled way.",
"main": "index.js",
"main": "lib/index.js",
"scripts": {
"test": "mocha"
"build": "BABEL_ENV=cjs babel src -d lib",
"test": "mocha",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
Expand All @@ -21,6 +23,9 @@
"author": "Anton Korzunov",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"mocha": "~3.1",
"should": "~3.3",
"sinon": "~1.9"
Expand Down
File renamed without changes.

0 comments on commit b7a3a4d

Please sign in to comment.