https://github.com/yi-love/assets-json-plugin
assets json for webpack
https://github.com/yi-love/assets-json-plugin
assets webpack webpack-plugin webpack4
Last synced: about 2 months ago
JSON representation
assets json for webpack
- Host: GitHub
- URL: https://github.com/yi-love/assets-json-plugin
- Owner: Yi-love
- License: mit
- Created: 2018-09-17T12:53:41.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-09-17T13:00:27.000Z (almost 8 years ago)
- Last Synced: 2025-07-13T19:38:15.508Z (12 months ago)
- Topics: assets, webpack, webpack-plugin, webpack4
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Assets json Plugin
assets json for webpack.
## npm
```
```
```js
new AssetsJsonPlugin({})
```
## example
```json
{
"hash": "a7e4bb42fb766c8a42f3",
"publicPath": "http://www.test.com/dist/",
"entry": {
"header": {
"entry": true,
"js": "header.js?v=a7e4bb42fb766c8a42f3",
"hash": "2c131466fb262ee7dfd9",
"css": [
"header.css?v=0dff772c498d08034dce"
],
"siblings": [
"vue"
]
},
"main": {
"entry": true,
"js": "main.js?v=a7e4bb42fb766c8a42f3",
"hash": "19706f4776e9d61278f5",
"css": [
"main.css?v=5e1eaee80abd41742afb"
],
"siblings": [
"vue"
]
},
"vue": {
"entry": false,
"js": "vue.js?v=a7e4bb42fb766c8a42f3",
"hash": "75afae3dc4435bd37a5a",
"css": [ ],
"siblings": [
"header",
"main"
]
}
}
}
```