Add experimental Webpack support. Works fine when no cache is involved, but I need to figure out a better story for cache integration as most builds that teams use likely include a cache enabled.
This commit is contained in:
parent
f2040233d0
commit
3801044178
18 changed files with 40032 additions and 486 deletions
96
package.json
96
package.json
|
|
@ -1,44 +1,56 @@
|
|||
{
|
||||
"name": "react-iconpack",
|
||||
"description": "A React Component for handling SVGs coupled with Babel and Browserify plugins to only bundle the SVGs you use.",
|
||||
"author": "Ryan McGrath",
|
||||
"version": "1.1.4",
|
||||
"license": "MIT",
|
||||
|
||||
"dependencies": {
|
||||
"svgo": "^0.5.3",
|
||||
"lodash": "*",
|
||||
"through2": "^2.0.0",
|
||||
"async": "^1.4.0"
|
||||
},
|
||||
|
||||
"devDependencies": {
|
||||
"jest": "",
|
||||
"jasmine-node": ""
|
||||
},
|
||||
"scripts": {"test": "jest"},
|
||||
|
||||
"keywords": [
|
||||
"react",
|
||||
"react-component",
|
||||
"browserify-plugin",
|
||||
"babel-plugin",
|
||||
"browserify",
|
||||
"babel",
|
||||
"svg",
|
||||
"icons",
|
||||
"polymer"
|
||||
],
|
||||
|
||||
"maintainers": [{
|
||||
"name": "Ryan McGrath",
|
||||
"email": "ryan@venodesigns.net",
|
||||
"web": "http://venodesigns.net/"
|
||||
}],
|
||||
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/ryanmcgrath/react-iconpack.git"
|
||||
},
|
||||
"bugs": {"url": "https://github.com/ryanmcgrath/react-iconpack/issues"}
|
||||
"name": "react-iconpack",
|
||||
"description": "A React Component for handling SVGs coupled with Babel and Browserify plugins to only bundle the SVGs you use.",
|
||||
"author": "Ryan McGrath",
|
||||
"main": "index.js",
|
||||
"version": "1.1.4",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"async": "^1.4.0",
|
||||
"lodash": "*",
|
||||
"svgo": "^0.5.3",
|
||||
"through2": "^2.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"babel-core": "^6.7.2",
|
||||
"babel-loader": "^6.2.4",
|
||||
"babel-preset-es2015": "^6.6.0",
|
||||
"babel-preset-react": "^6.5.0",
|
||||
"babelify": "^7.2.0",
|
||||
"browserify": "^13.0.0",
|
||||
"gulp": "^3.9.1",
|
||||
"jasmine-node": "",
|
||||
"jest": "",
|
||||
"react": "^0.14.7",
|
||||
"react-dom": "^0.14.7",
|
||||
"webpack": "^1.12.14"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "jest"
|
||||
},
|
||||
"keywords": [
|
||||
"react",
|
||||
"react-component",
|
||||
"browserify-plugin",
|
||||
"babel-plugin",
|
||||
"browserify",
|
||||
"babel",
|
||||
"svg",
|
||||
"icons",
|
||||
"polymer"
|
||||
],
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "Ryan McGrath",
|
||||
"email": "ryan@venodesigns.net",
|
||||
"web": "http://venodesigns.net/"
|
||||
}
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/ryanmcgrath/react-iconpack.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/ryanmcgrath/react-iconpack/issues"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue