rollup-plugin-includepaths
Advanced tools
Comparing version 0.2.3 to 0.2.4
{ | ||
"name": "rollup-plugin-includepaths", | ||
"version": "0.2.3", | ||
"version": "0.2.4", | ||
"description": "Rollup plugin to use relative paths in your project files", | ||
@@ -10,10 +10,17 @@ "main": "src/plugin.es5.js", | ||
], | ||
"release": { | ||
"branches": [ | ||
"master" | ||
] | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"scripts": { | ||
"lint": "eslint src/plugin.js", | ||
"build": "babel src/plugin.js --out-file src/plugin.es5.js", | ||
"prepublish": "npm run lint && npm run build" | ||
"build": "babel src/plugin.js --out-file src/plugin.es5.js" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/dot-build/rollup-plugin-includepaths.git" | ||
"url": "https://github.com/dot-build/rollup-plugin-includepaths.git" | ||
}, | ||
@@ -32,7 +39,8 @@ "keywords": [ | ||
"devDependencies": { | ||
"babel-cli": "^6.8.0", | ||
"babel-plugin-add-module-exports": "^0.2.0", | ||
"babel-cli": "^6.26.0", | ||
"babel-plugin-add-module-exports": "^1.0.2", | ||
"babel-preset-es2015": "^6.6.0", | ||
"eslint": "^4.19.1" | ||
"eslint": "^7.6.0", | ||
"semantic-release": "^17.1.1" | ||
} | ||
} |
@@ -342,2 +342,2 @@ 'use strict'; | ||
} | ||
module.exports = exports['default']; | ||
module.exports = exports.default; |
@@ -117,3 +117,3 @@ import path from 'path'; | ||
function resolveJsExtension (file) { | ||
if (/\.js$/.test(file) === false) { | ||
if ((/\.js$/).test(file) === false) { | ||
file += '.js'; | ||
@@ -120,0 +120,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
22006
5