Remove babel polyfils from webpack build and output

This commit is contained in:
radswiat 2017-05-18 09:58:40 +01:00
parent c45db96b59
commit 90e0587ac8
5 changed files with 1204 additions and 8544 deletions

View File

@ -127,6 +127,8 @@ Example html:
# Change log
## [0.5.14] - 12/04/2017
- Remove babel polyfills from webpack build as it was causing issues if babel was already used in project
## [0.5.13] - 12/04/2017
- Tag from InjectAsComment can now be configured by options ( componentsOptions.InjectAsComment.tag )
- Default tag template for InjectAsComment has change

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "webpack-auto-inject-version",
"version": "0.5.13",
"version": "0.5.14",
"repository": "radswiat/webpack-auto-inject-version",
"description": "Webpack plugin for auto inject version from package.json",
"main": "dist/WebpackAutoInjectVersion.js",

View File

@ -2,7 +2,6 @@ import path from 'path';
import config from 'config';
import log from 'core/log';
import tags from './tags';
import chalk from 'chalk';
const endOfLine = require('os').EOL;

View File

@ -2,7 +2,7 @@ import path from 'path';
export default {
target: 'node',
entry: ['babel-polyfill', './src/main.js'],
entry: ['./src/main.js'],
resolve: {
extensions: ['.js']
},