hybridly 0.0.1-dev.4 → 0.1.0-alpha.1

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/client.d.ts CHANGED
@@ -1 +1,3 @@
1
- declare module 'virtual:hybridly/router' {}
1
+ declare module 'virtual:hybridly/config' {
2
+ export { initializeHybridly } from 'hybridly/vue'
3
+ }
package/config.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from './dist/config'
@@ -0,0 +1,11 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ const config = require('@hybridly/config');
6
+
7
+
8
+
9
+ for (const k in config) {
10
+ if (k !== 'default' && !exports.hasOwnProperty(k)) exports[k] = config[k];
11
+ }
@@ -0,0 +1 @@
1
+ export * from '@hybridly/config';
@@ -0,0 +1 @@
1
+ export * from '@hybridly/config';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "hybridly",
3
- "version": "0.0.1-dev.4",
4
- "description": "A solution to develop server-driven, client-rendered applications",
3
+ "version": "0.1.0-alpha.1",
4
+ "description": "Solution to develop server-driven, client-rendered applications",
5
5
  "keywords": [
6
6
  "hybridly",
7
7
  "inertiajs"
@@ -38,24 +38,24 @@
38
38
  "import": "./dist/vue.mjs",
39
39
  "types": "./dist/vue.d.ts"
40
40
  },
41
- "./auto-imports": {
42
- "require": "./dist/auto-imports.cjs",
43
- "import": "./dist/auto-imports.mjs",
44
- "types": "./dist/auto-imports.d.ts"
41
+ "./config": {
42
+ "require": "./dist/config.cjs",
43
+ "import": "./dist/config.mjs",
44
+ "types": "./dist/config.d.ts"
45
45
  },
46
- "./resolver": {
47
- "require": "./dist/resolver.cjs",
48
- "import": "./dist/resolver.mjs",
49
- "types": "./dist/resolver.d.ts"
46
+ "./client": {
47
+ "types": "./client.d.ts"
50
48
  }
51
49
  },
52
50
  "main": "dist/index.cjs",
53
51
  "module": "dist/index.mjs",
54
52
  "types": "index.d.ts",
55
53
  "dependencies": {
56
- "@hybridly/core": "0.0.1-dev.4",
57
- "@hybridly/vite": "0.0.1-dev.4",
58
- "@hybridly/vue": "0.0.1-dev.4"
54
+ "@hybridly/core": "0.1.0-alpha.1",
55
+ "@hybridly/config": "0.1.0-alpha.1",
56
+ "@hybridly/vite": "0.1.0-alpha.1",
57
+ "@hybridly/progress-plugin": "0.1.0-alpha.1",
58
+ "@hybridly/vue": "0.1.0-alpha.1"
59
59
  },
60
60
  "scripts": {
61
61
  "build": "unbuild",
package/auto-imports.d.ts DELETED
@@ -1 +0,0 @@
1
- export { default } from './dist/auto-imports'
@@ -1,7 +0,0 @@
1
- 'use strict';
2
-
3
- const vue = require('@hybridly/vue');
4
-
5
-
6
-
7
- module.exports = vue.HybridlyImports;
@@ -1 +0,0 @@
1
- export { HybridlyImports as default } from '@hybridly/vue';
@@ -1 +0,0 @@
1
- export { HybridlyImports as default } from '@hybridly/vue';
package/dist/resolver.cjs DELETED
@@ -1,7 +0,0 @@
1
- 'use strict';
2
-
3
- const vue = require('@hybridly/vue');
4
-
5
-
6
-
7
- module.exports = vue.HybridlyResolver;
@@ -1 +0,0 @@
1
- export { HybridlyResolver as default } from '@hybridly/vue';
package/dist/resolver.mjs DELETED
@@ -1 +0,0 @@
1
- export { HybridlyResolver as default } from '@hybridly/vue';
package/resolver.d.ts DELETED
@@ -1 +0,0 @@
1
- export { default } from './dist/resolver'