@kaokei/use-vue-service 2.0.0 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.min.js +1 -1
- package/dist/index.cjs.runtime.js +1 -1
- package/dist/index.cjs.runtime.min.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.min.js +1 -1
- package/dist/index.esm.runtime.js +1 -1
- package/dist/index.esm.runtime.min.js +1 -1
- package/dist/index.iife.js +1 -1
- package/dist/index.iife.min.js +1 -1
- package/package.json +23 -4
package/dist/index.cjs.js
CHANGED
package/dist/index.cjs.min.js
CHANGED
package/dist/index.esm.js
CHANGED
|
@@ -4,7 +4,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
4
4
|
* @kaokei/use-vue-service
|
|
5
5
|
* Use angular service in vue.
|
|
6
6
|
*
|
|
7
|
-
* @version 2.0.
|
|
7
|
+
* @version 2.0.2
|
|
8
8
|
* @author kaokei
|
|
9
9
|
* @license MIT
|
|
10
10
|
* @link https://github.com/kaokei/use-vue-service
|
package/dist/index.esm.min.js
CHANGED
|
@@ -3,7 +3,7 @@ function o(r){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterat
|
|
|
3
3
|
* @kaokei/use-vue-service
|
|
4
4
|
* Use angular service in vue.
|
|
5
5
|
*
|
|
6
|
-
* @version 2.0.
|
|
6
|
+
* @version 2.0.2
|
|
7
7
|
* @author kaokei
|
|
8
8
|
* @license MIT
|
|
9
9
|
* @link https://github.com/kaokei/use-vue-service
|
package/dist/index.iife.js
CHANGED
|
@@ -4,7 +4,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
4
4
|
* @kaokei/use-vue-service
|
|
5
5
|
* Use angular service in vue.
|
|
6
6
|
*
|
|
7
|
-
* @version 2.0.
|
|
7
|
+
* @version 2.0.2
|
|
8
8
|
* @author kaokei
|
|
9
9
|
* @license MIT
|
|
10
10
|
* @link https://github.com/kaokei/use-vue-service
|
package/dist/index.iife.min.js
CHANGED
|
@@ -3,7 +3,7 @@ function _typeof(e){return _typeof="function"==typeof Symbol&&"symbol"==typeof S
|
|
|
3
3
|
* @kaokei/use-vue-service
|
|
4
4
|
* Use angular service in vue.
|
|
5
5
|
*
|
|
6
|
-
* @version 2.0.
|
|
6
|
+
* @version 2.0.2
|
|
7
7
|
* @author kaokei
|
|
8
8
|
* @license MIT
|
|
9
9
|
* @link https://github.com/kaokei/use-vue-service
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kaokei/use-vue-service",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "Use angular service in vue.",
|
|
5
5
|
"main": "./dist/index.cjs.runtime.min.js",
|
|
6
6
|
"module": "./dist/index.esm.runtime.min.js",
|
|
@@ -10,6 +10,27 @@
|
|
|
10
10
|
"files": [
|
|
11
11
|
"dist/**/*"
|
|
12
12
|
],
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"types": "./dist/src/index.d.ts",
|
|
16
|
+
"import": "./dist/index.esm.js",
|
|
17
|
+
"browser": "./dist/index.iife.js",
|
|
18
|
+
"node": {
|
|
19
|
+
"import": {
|
|
20
|
+
"production": "./dist/index.esm.runtime.min.js",
|
|
21
|
+
"development": "./dist/index.esm.js",
|
|
22
|
+
"default": "./dist/index.esm.js"
|
|
23
|
+
},
|
|
24
|
+
"require": {
|
|
25
|
+
"production": "./dist/index.cjs.runtime.min.js",
|
|
26
|
+
"development": "./dist/index.cjs.js",
|
|
27
|
+
"default": "./dist/index.cjs.js"
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"./dist/*": "./dist/*",
|
|
32
|
+
"./package.json": "./package.json"
|
|
33
|
+
},
|
|
13
34
|
"browserVariableName": "UseVueService",
|
|
14
35
|
"sideEffects": false,
|
|
15
36
|
"homepage": "https://github.com/kaokei/use-vue-service",
|
|
@@ -47,10 +68,8 @@
|
|
|
47
68
|
"coverage": "open ./coverage/lcov-report/index.html",
|
|
48
69
|
"commit": "git-cz"
|
|
49
70
|
},
|
|
50
|
-
"dependencies": {
|
|
51
|
-
"@kaokei/di": "^2.0.0"
|
|
52
|
-
},
|
|
53
71
|
"peerDependencies": {
|
|
72
|
+
"@kaokei/di": "^2.0.2",
|
|
54
73
|
"reflect-metadata": "^0.1.13",
|
|
55
74
|
"vue": "^3.2.0"
|
|
56
75
|
},
|