onelaraveljs 1.2.2 → 1.2.3

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.
Files changed (3) hide show
  1. package/index.js +1 -1
  2. package/package.json +5 -1
  3. package/plugins.js +1 -0
package/index.js CHANGED
@@ -17,4 +17,4 @@ export {
17
17
  // Default export
18
18
  export default App;
19
19
 
20
- export { default as ViewRegistryPlugin } from './src/plugins/ViewRegistryPlugin.js';
20
+
package/package.json CHANGED
@@ -1,8 +1,12 @@
1
1
  {
2
2
  "name": "onelaraveljs",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "OneLaravel JS Framework Core & Compiler",
5
5
  "main": "index.js",
6
+ "exports": {
7
+ ".": "./index.js",
8
+ "./plugins": "./plugins.js"
9
+ },
6
10
  "bin": {
7
11
  "onejs-build": "./bin/onejs-build.js"
8
12
  },
package/plugins.js ADDED
@@ -0,0 +1 @@
1
+ export { default as ViewRegistryPlugin } from './src/plugins/ViewRegistryPlugin.js';