vike 0.4.177-commit-ff3d6cd → 0.4.177-commit-f4a92e0

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.
@@ -16,7 +16,9 @@ const PROTOCOLS = [
16
16
  // For [Tauri](https://tauri.app/)
17
17
  'tauri://',
18
18
  // For Electron: https://github.com/vikejs/vike/issues/1557
19
- 'file://'
19
+ 'file://',
20
+ // For Capacitor: https://github.com/vikejs/vike/issues/1706
21
+ 'capacitor://'
20
22
  ];
21
23
  function isParsable(url) {
22
24
  // `parseUrl()` works with these URLs
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PROJECT_VERSION = exports.projectInfo = void 0;
4
- const PROJECT_VERSION = '0.4.177-commit-ff3d6cd';
4
+ const PROJECT_VERSION = '0.4.177-commit-f4a92e0';
5
5
  exports.PROJECT_VERSION = PROJECT_VERSION;
6
6
  const projectInfo = {
7
7
  projectName: 'Vike',
@@ -18,7 +18,9 @@ const PROTOCOLS = [
18
18
  // For [Tauri](https://tauri.app/)
19
19
  'tauri://',
20
20
  // For Electron: https://github.com/vikejs/vike/issues/1557
21
- 'file://'
21
+ 'file://',
22
+ // For Capacitor: https://github.com/vikejs/vike/issues/1706
23
+ 'capacitor://'
22
24
  ];
23
25
  function isParsable(url) {
24
26
  // `parseUrl()` works with these URLs
@@ -1,7 +1,7 @@
1
1
  export { projectInfo };
2
2
  export { PROJECT_VERSION };
3
- declare const PROJECT_VERSION: "0.4.177-commit-ff3d6cd";
3
+ declare const PROJECT_VERSION: "0.4.177-commit-f4a92e0";
4
4
  declare const projectInfo: {
5
5
  projectName: "Vike";
6
- projectVersion: "0.4.177-commit-ff3d6cd";
6
+ projectVersion: "0.4.177-commit-f4a92e0";
7
7
  };
@@ -1,6 +1,6 @@
1
1
  export { projectInfo };
2
2
  export { PROJECT_VERSION };
3
- const PROJECT_VERSION = '0.4.177-commit-ff3d6cd';
3
+ const PROJECT_VERSION = '0.4.177-commit-f4a92e0';
4
4
  const projectInfo = {
5
5
  projectName: 'Vike',
6
6
  projectVersion: PROJECT_VERSION
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vike",
3
- "version": "0.4.177-commit-ff3d6cd",
3
+ "version": "0.4.177-commit-f4a92e0",
4
4
  "scripts": {
5
5
  "dev": "tsc --watch",
6
6
  "build": "rimraf dist/ && pnpm run build:esm && pnpm run build:cjs",