Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
VueElementTemplate
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄瑜
VueElementTemplate
Commits
dec160fd
Commit
dec160fd
authored
Nov 27, 2017
by
Pan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: change inject package dependencies
parent
c06baffb
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
7 deletions
+5
-7
webpack.dev.conf.js
build/webpack.dev.conf.js
+1
-3
webpack.prod.conf.js
build/webpack.prod.conf.js
+1
-3
index.js
src/utils/index.js
+3
-1
No files found.
build/webpack.dev.conf.js
View file @
dec160fd
...
@@ -6,7 +6,6 @@ var merge = require('webpack-merge')
...
@@ -6,7 +6,6 @@ var merge = require('webpack-merge')
var
baseWebpackConfig
=
require
(
'./webpack.base.conf'
)
var
baseWebpackConfig
=
require
(
'./webpack.base.conf'
)
var
HtmlWebpackPlugin
=
require
(
'html-webpack-plugin'
)
var
HtmlWebpackPlugin
=
require
(
'html-webpack-plugin'
)
var
FriendlyErrorsPlugin
=
require
(
'friendly-errors-webpack-plugin'
)
var
FriendlyErrorsPlugin
=
require
(
'friendly-errors-webpack-plugin'
)
var
dependencies
=
require
(
'../package.json'
).
dependencies
// add hot-reload related code to entry chunks
// add hot-reload related code to entry chunks
Object
.
keys
(
baseWebpackConfig
.
entry
).
forEach
(
function
(
name
)
{
Object
.
keys
(
baseWebpackConfig
.
entry
).
forEach
(
function
(
name
)
{
...
@@ -26,8 +25,7 @@ module.exports = merge(baseWebpackConfig, {
...
@@ -26,8 +25,7 @@ module.exports = merge(baseWebpackConfig, {
cache
:
true
,
cache
:
true
,
plugins
:
[
plugins
:
[
new
webpack
.
DefinePlugin
({
new
webpack
.
DefinePlugin
({
'process.env'
:
config
.
dev
.
env
,
'process.env'
:
config
.
dev
.
env
'DEPENDENCIES'
:
JSON
.
stringify
(
dependencies
)
}),
}),
// https://github.com/glenjamin/webpack-hot-middleware#installation--usage
// https://github.com/glenjamin/webpack-hot-middleware#installation--usage
new
webpack
.
HotModuleReplacementPlugin
(),
new
webpack
.
HotModuleReplacementPlugin
(),
...
...
build/webpack.prod.conf.js
View file @
dec160fd
...
@@ -8,7 +8,6 @@ var CopyWebpackPlugin = require('copy-webpack-plugin')
...
@@ -8,7 +8,6 @@ var CopyWebpackPlugin = require('copy-webpack-plugin')
var
HtmlWebpackPlugin
=
require
(
'html-webpack-plugin'
)
var
HtmlWebpackPlugin
=
require
(
'html-webpack-plugin'
)
var
ExtractTextPlugin
=
require
(
'extract-text-webpack-plugin'
)
var
ExtractTextPlugin
=
require
(
'extract-text-webpack-plugin'
)
var
OptimizeCSSPlugin
=
require
(
'optimize-css-assets-webpack-plugin'
)
var
OptimizeCSSPlugin
=
require
(
'optimize-css-assets-webpack-plugin'
)
var
dependencies
=
require
(
'../package.json'
).
dependencies
var
env
=
config
.
build
[
process
.
env
.
env_config
+
'Env'
]
var
env
=
config
.
build
[
process
.
env
.
env_config
+
'Env'
]
...
@@ -34,8 +33,7 @@ var webpackConfig = merge(baseWebpackConfig, {
...
@@ -34,8 +33,7 @@ var webpackConfig = merge(baseWebpackConfig, {
plugins
:
[
plugins
:
[
// http://vuejs.github.io/vue-loader/en/workflow/production.html
// http://vuejs.github.io/vue-loader/en/workflow/production.html
new
webpack
.
DefinePlugin
({
new
webpack
.
DefinePlugin
({
'process.env'
:
env
,
'process.env'
:
env
'DEPENDENCIES'
:
JSON
.
stringify
(
dependencies
)
}),
}),
new
webpack
.
optimize
.
UglifyJsPlugin
({
new
webpack
.
optimize
.
UglifyJsPlugin
({
compress
:
{
compress
:
{
...
...
src/utils/index.js
View file @
dec160fd
...
@@ -268,5 +268,7 @@ export function deepClone(source) {
...
@@ -268,5 +268,7 @@ export function deepClone(source) {
// get dependencies verison from package.json by webpack.DefinePlugin
// get dependencies verison from package.json by webpack.DefinePlugin
export
function
getVersion
(
name
)
{
export
function
getVersion
(
name
)
{
return
DEPENDENCIES
[
name
]
// eslint-disable-line
import
(
'../../package'
).
then
(
p
=>
{
return
p
.
dependencies
[
name
]
})
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment