-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ability to inline other assets; update deps
- Loading branch information
Showing
2 changed files
with
42 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"name": "webpack-path-rewriter", | ||
"version": "1.1.2", | ||
"version": "1.1.3", | ||
"description": "Webpack plugin for replacing resources' paths with public ones", | ||
"author": "Sam Kozin <[email protected]>", | ||
"scripts": { | ||
"prepublish": "babel ./es6 --out-dir .", | ||
"watch": "babel --watch ./es6 --out-dir .", | ||
"prepublish": "babel ./es6 --presets es2015 --out-dir .", | ||
"watch": "babel --watch ./es6 --presets es2015 --out-dir .", | ||
"test": "echo 'Sorry, no tests yet' && exit 1" | ||
}, | ||
"repository": { | ||
|
@@ -25,10 +25,11 @@ | |
}, | ||
"homepage": "https://github.com/skozin/webpack-path-rewriter", | ||
"dependencies": { | ||
"loader-utils": "^0.2.6" | ||
"loader-utils": "^0.2.11" | ||
}, | ||
"devDependencies": { | ||
"babel": "^4.7.9" | ||
"babel-cli": "^6.1.18", | ||
"babel-preset-es2015": "^6.1.18" | ||
}, | ||
"files": [ | ||
"index.js", | ||
|