vue-tippy 6.0.0-alpha.34 → 6.0.0-alpha.35

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.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * vue-tippy v6.0.0-alpha.33
2
+ * vue-tippy v6.0.0-alpha.35
3
3
  * (c) 2021 Georges KABBOUCHI
4
4
  * @license MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * vue-tippy v6.0.0-alpha.33
2
+ * vue-tippy v6.0.0-alpha.35
3
3
  * (c) 2021 Georges KABBOUCHI
4
4
  * @license MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * vue-tippy v6.0.0-alpha.33
2
+ * vue-tippy v6.0.0-alpha.35
3
3
  * (c) 2021 Georges KABBOUCHI
4
4
  * @license MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * vue-tippy v6.0.0-alpha.33
2
+ * vue-tippy v6.0.0-alpha.35
3
3
  * (c) 2021 Georges KABBOUCHI
4
4
  * @license MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * vue-tippy v6.0.0-alpha.33
2
+ * vue-tippy v6.0.0-alpha.35
3
3
  * (c) 2021 Georges KABBOUCHI
4
4
  * @license MIT
5
5
  */
package/index.js ADDED
@@ -0,0 +1,7 @@
1
+ 'use strict'
2
+
3
+ if (process.env.NODE_ENV === 'production') {
4
+ module.exports = require('./dist/vue-tippy.cjs.prod.js')
5
+ } else {
6
+ module.exports = require('./dist/vue-tippy.cjs.js')
7
+ }
package/index.mjs ADDED
@@ -0,0 +1 @@
1
+ export * from './index.js'
package/package.json CHANGED
@@ -1,18 +1,34 @@
1
1
  {
2
2
  "name": "vue-tippy",
3
- "version": "6.0.0-alpha.34",
4
- "main": "dist/vue-tippy.cjs.js",
5
- "browser": "dist/vue-tippy.esm.js",
6
- "unpkg": "dist/vue-tippy.global.js",
7
- "jsdelivr": "dist/vue-tippy.global.js",
3
+ "version": "6.0.0-alpha.35",
4
+ "main": "index.js",
8
5
  "module": "dist/vue-tippy.esm-bundler.js",
6
+ "unpkg": "dist/vue-tippy.iife.js",
7
+ "jsdelivr": "dist/vue-tippy.iife.js",
9
8
  "types": "dist/vue-tippy.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": {
12
+ "node": "./index.mjs",
13
+ "default": "./dist/vue-tippy.esm-bundler.js"
14
+ },
15
+ "require": "./index.js"
16
+ },
17
+ "./package.json": "./package.json",
18
+ "./index.mjs": "./index.mjs",
19
+ "./dist/*": "./dist/*"
20
+ },
10
21
  "sideEffects": false,
11
22
  "license": "MIT",
12
23
  "files": [
13
24
  "dist/*.js",
25
+ "dist/*.mjs",
26
+ "dist/*.cjs",
14
27
  "dist/vue-tippy.d.ts",
28
+ "index.js",
29
+ "index.mjs",
15
30
  "vetur/*.json",
31
+ "LICENSE",
16
32
  "README.md"
17
33
  ],
18
34
  "scripts": {