Skip to content
This repository has been archived by the owner on Dec 1, 2023. It is now read-only.

Commit

Permalink
Merge branch 'release/0.7.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
steffans committed May 26, 2016
2 parents 2cc38d6 + 24da68d commit 6c28be8
Show file tree
Hide file tree
Showing 6 changed files with 1,680 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vue-resource",
"main": "dist/vue-resource.js",
"description": "A web request service for Vue.js",
"version": "0.7.1",
"version": "0.7.2",
"homepage": "https://github.com/vuejs/vue-resource",
"license": "MIT",
"ignore": [
Expand Down
18 changes: 18 additions & 0 deletions build/webpack.build.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,24 @@ module.exports = [
]
},

{
entry: "./src/index",
output: {
path: "./dist",
filename: "vue-resource.common.js",
library: "VueResource",
libraryTarget: "commonjs2"
},
module: {
loaders: [
{test: /.js/, exclude: /node_modules/, loader: 'babel', query: {presets: ['es2015-without-strict']}}
]
},
plugins: [
new webpack.BannerPlugin(banner, {raw: true})
]
},

{
entry: "./src/index",
output: {
Expand Down
Loading

0 comments on commit 6c28be8

Please sign in to comment.