Trying to fix dependecies
This commit is contained in:
parent
814e3699d5
commit
d5315a004c
5 changed files with 29372 additions and 448 deletions
4
demo/dist/index-bundle.js
vendored
4
demo/dist/index-bundle.js
vendored
|
@ -1,4 +1,4 @@
|
|||
// [AIV] Build version: 0.6.0
|
||||
// [AIV] Build version: 0.13.4
|
||||
/******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
|
@ -71,7 +71,7 @@
|
|||
/* 0 */
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports = "<!DOCTYPE html><html lang=en><head><meta charset=UTF-8><title>Title</title></head><body><span>My awesome project | 0.6.0></span></body></html>"
|
||||
module.exports = "<!DOCTYPE html><html lang=en><head><meta charset=UTF-8><title>Title</title></head><body><span>My awesome project | 0.13.4></span></body></html>"
|
||||
|
||||
/***/ }),
|
||||
/* 1 */
|
||||
|
|
|
@ -16,6 +16,6 @@
|
|||
"webpack": "^2.3.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"webpack-auto-inject-version": "^0.5.1"
|
||||
"webpack-auto-inject-version": "^0.5.5"
|
||||
}
|
||||
}
|
||||
|
|
29801
dist/WebpackAutoInjectVersion.js
vendored
29801
dist/WebpackAutoInjectVersion.js
vendored
File diff suppressed because it is too large
Load diff
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "webpack-auto-inject-version",
|
||||
"version": "0.5.5",
|
||||
"version": "0.5.10",
|
||||
"repository": "radswiat/webpack-auto-inject-version",
|
||||
"description": "Webpack plugin for auto inject version from package.json",
|
||||
"main": "dist/WebpackAutoInjectVersion.js",
|
||||
|
@ -9,7 +9,7 @@
|
|||
},
|
||||
"author": "Radoslaw Swiat",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"devDependencies": {
|
||||
"bluebird": "^3.4.6",
|
||||
"chalk": "^1.1.3",
|
||||
"lodash": "^4.17.4",
|
||||
|
@ -33,5 +33,8 @@
|
|||
"gutil": "^1.6.4",
|
||||
"webpack": "^2.3.3",
|
||||
"webpack-node-externals": "^1.5.4"
|
||||
},
|
||||
"dependencies": {
|
||||
|
||||
}
|
||||
}
|
|
@ -1,11 +1,11 @@
|
|||
import path from 'path';
|
||||
const webpack = require('webpack');
|
||||
import nodeExternals from 'webpack-node-externals';
|
||||
// import nodeExternals from 'webpack-node-externals';
|
||||
|
||||
export default {
|
||||
target: 'node',
|
||||
externals: [nodeExternals()],
|
||||
entry: './src/main.js',
|
||||
// externals: [nodeExternals()],
|
||||
entry: ['babel-polyfill', './src/main.js'],
|
||||
resolve: {
|
||||
extensions: ['.js']
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue