@vuepress/plugin-pwa 2.0.0-rc.1 → 2.0.0-rc.10

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,4 +1,5 @@
1
1
  import { pwaPlugin } from './pwaPlugin.js';
2
2
  export * from './generateServiceWorker.js';
3
3
  export * from './pwaPlugin.js';
4
+ /** @deprecated Use named export instead */
4
5
  export default pwaPlugin;
package/lib/node/index.js CHANGED
@@ -1,4 +1,5 @@
1
1
  import { pwaPlugin } from './pwaPlugin.js';
2
2
  export * from './generateServiceWorker.js';
3
3
  export * from './pwaPlugin.js';
4
+ /** @deprecated Use named export instead */
4
5
  export default pwaPlugin;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vuepress/plugin-pwa",
3
- "version": "2.0.0-rc.1",
3
+ "version": "2.0.0-rc.10",
4
4
  "description": "VuePress plugin - progressive web application",
5
5
  "keywords": [
6
6
  "vuepress-plugin",
@@ -8,13 +8,14 @@
8
8
  "plugin",
9
9
  "pwa"
10
10
  ],
11
- "homepage": "https://github.com/vuepress",
11
+ "homepage": "https://ecosystem.vuejs.press/plugins/pwa.html",
12
12
  "bugs": {
13
13
  "url": "https://github.com/vuepress/ecosystem/issues"
14
14
  },
15
15
  "repository": {
16
16
  "type": "git",
17
- "url": "git+https://github.com/vuepress/ecosystem.git"
17
+ "url": "git+https://github.com/vuepress/ecosystem.git",
18
+ "directory": "plugins/plugin-pwa"
18
19
  },
19
20
  "license": "MIT",
20
21
  "author": "meteorlxy",
@@ -31,7 +32,7 @@
31
32
  ],
32
33
  "scripts": {
33
34
  "build": "tsc -b tsconfig.build.json",
34
- "clean": "rimraf lib *.tsbuildinfo"
35
+ "clean": "rimraf --glob ./lib ./*.tsbuildinfo"
35
36
  },
36
37
  "dependencies": {
37
38
  "mitt": "^3.0.1",
@@ -40,10 +41,10 @@
40
41
  "workbox-build": "^7.0.0"
41
42
  },
42
43
  "peerDependencies": {
43
- "vuepress": "2.0.0-rc.2"
44
+ "vuepress": "2.0.0-rc.5"
44
45
  },
45
46
  "publishConfig": {
46
47
  "access": "public"
47
48
  },
48
- "gitHead": "1de7fea6963c3dd6c89df21eca4accc2d31204a4"
49
+ "gitHead": "2e4d75617b030b584fb59346087790c982dbf411"
49
50
  }