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

Commit 6c28be8

Browse files
committed
Merge branch 'release/0.7.2'
2 parents 2cc38d6 + 24da68d commit 6c28be8

File tree

6 files changed

+1680
-5
lines changed

6 files changed

+1680
-5
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vue-resource",
33
"main": "dist/vue-resource.js",
44
"description": "A web request service for Vue.js",
5-
"version": "0.7.1",
5+
"version": "0.7.2",
66
"homepage": "https://github.com/vuejs/vue-resource",
77
"license": "MIT",
88
"ignore": [

build/webpack.build.config.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,24 @@ module.exports = [
2727
]
2828
},
2929

30+
{
31+
entry: "./src/index",
32+
output: {
33+
path: "./dist",
34+
filename: "vue-resource.common.js",
35+
library: "VueResource",
36+
libraryTarget: "commonjs2"
37+
},
38+
module: {
39+
loaders: [
40+
{test: /.js/, exclude: /node_modules/, loader: 'babel', query: {presets: ['es2015-without-strict']}}
41+
]
42+
},
43+
plugins: [
44+
new webpack.BannerPlugin(banner, {raw: true})
45+
]
46+
},
47+
3048
{
3149
entry: "./src/index",
3250
output: {

0 commit comments

Comments
 (0)