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

Commit 0ee9adb

Browse files
committed
v0.1.7
1 parent ce42280 commit 0ee9adb

File tree

4 files changed

+20
-8
lines changed

4 files changed

+20
-8
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.1.6",
5+
"version": "0.1.7",
66
"homepage": "https://github.com/vuejs/vue-resource",
77
"license": "MIT",
88
"ignore": [

dist/vue-resource.js

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
11
/**
2-
* vue-resource v0.1.6
2+
* vue-resource v0.1.7
33
* https://github.com/vuejs/vue-resource
44
* Released under the MIT License.
55
*/
66

7-
/******/ (function(modules) { // webpackBootstrap
7+
(function webpackUniversalModuleDefinition(root, factory) {
8+
if(typeof exports === 'object' && typeof module === 'object')
9+
module.exports = factory();
10+
else if(typeof define === 'function' && define.amd)
11+
define(factory);
12+
else if(typeof exports === 'object')
13+
exports["VueResource"] = factory();
14+
else
15+
root["VueResource"] = factory();
16+
})(this, function() {
17+
return /******/ (function(modules) { // webpackBootstrap
818
/******/ // The module cache
919
/******/ var installedModules = {};
1020

@@ -748,4 +758,6 @@
748758

749759

750760
/***/ }
751-
/******/ ]);
761+
/******/ ])
762+
});
763+
;

dist/vue-resource.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-resource",
3-
"version": "0.1.6",
3+
"version": "0.1.7",
44
"description": "A web request service for Vue.js",
55
"main": "src/index.js",
66
"scripts": {
@@ -22,6 +22,6 @@
2222
},
2323
"homepage": "https://github.com/vuejs/vue-resource#readme",
2424
"devDependencies": {
25-
"webpack": "^1.10.0"
25+
"webpack": "^1.10.1"
2626
}
2727
}

0 commit comments

Comments
 (0)