Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/huruji/author-webpack-plugin
A webpack4+ plugin to add author info to your bundles
https://github.com/huruji/author-webpack-plugin
webpack webpack-plugin webpack4
Last synced: 18 days ago
JSON representation
A webpack4+ plugin to add author info to your bundles
- Host: GitHub
- URL: https://github.com/huruji/author-webpack-plugin
- Owner: huruji
- Created: 2019-01-12T14:03:06.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-26T15:00:26.000Z (almost 6 years ago)
- Last Synced: 2024-11-11T08:44:12.887Z (about 1 month ago)
- Topics: webpack, webpack-plugin, webpack4
- Language: JavaScript
- Homepage:
- Size: 47.9 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
- awesome-github-star - author-webpack-plugin
README
# author-webpack-plugin
A webpack plugin to add author info to your bundles## How to use
```js
// webpack.config.jsconst AuthorWebpackPlugin = require('author-webpack-plugin')
const config = {
plugins: [
new AuthorWebpackPlugin({
author: 'huruji',
email: '[email protected]',
homepage: 'https://github.com/huruji/author-webpack-plugin',
github: 'https://github.com/huruji'
})
]
}
```your bundle output:
```js
/*
@Author: huruji@Email: [email protected]
@Homepage: https://github.com/huruji/author-webpack-plugin
@Github: https://github.com/huruji
@Date: Sat Jan 12 2019 23:11:39 GMT+0800 (GMT+08:00)
*/
// your bundle code
```