@olonjs/cli 3.0.104 → 3.0.106

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.
@@ -1646,7 +1646,7 @@ cat << 'END_OF_FILE_CONTENT' > "package.json"
1646
1646
  "@tiptap/extension-link": "^2.11.5",
1647
1647
  "@tiptap/react": "^2.11.5",
1648
1648
  "@tiptap/starter-kit": "^2.11.5",
1649
- "@olonjs/core": "^1.0.91",
1649
+ "@olonjs/core": "^1.0.93",
1650
1650
  "class-variance-authority": "^0.7.1",
1651
1651
  "clsx": "^2.1.1",
1652
1652
  "lucide-react": "^0.474.0",
@@ -12705,8 +12705,7 @@ cat << 'END_OF_FILE_CONTENT' > "tsconfig.json"
12705
12705
  "noFallthroughCasesInSwitch": true,
12706
12706
  "baseUrl": ".",
12707
12707
  "paths": {
12708
- "@/*": ["./src/*"],
12709
- "@olonjs/core": ["../../packages/core/src/index.ts"]
12708
+ "@/*": ["./src/*"]
12710
12709
  }
12711
12710
  },
12712
12711
  "include": ["src"],
@@ -12827,9 +12826,8 @@ function normalizeManifestSlug(raw) {
12827
12826
  }
12828
12827
 
12829
12828
  async function loadWebMcpBuilders() {
12830
- const moduleUrl = pathToFileURL(
12831
- path.resolve(__dirname, '..', '..', 'packages', 'core', 'src', 'lib', 'webmcp-contracts.mjs')
12832
- ).href;
12829
+ const corePkgPath = path.dirname(fileURLToPath(import.meta.resolve('@olonjs/core/package.json')));
12830
+ const moduleUrl = pathToFileURL(path.resolve(corePkgPath, 'src', 'lib', 'webmcp-contracts.mjs')).href;
12833
12831
  return import(moduleUrl);
12834
12832
  }
12835
12833
  export default defineConfig({
@@ -12977,7 +12975,6 @@ export default defineConfig({
12977
12975
  resolve: {
12978
12976
  alias: {
12979
12977
  '@': path.resolve(__dirname, './src'),
12980
- '@olonjs/core': path.resolve(__dirname, '..', '..', 'packages', 'core', 'src', 'index.ts'),
12981
12978
  'next/link': path.resolve(__dirname, './src/shims/next-link.tsx'),
12982
12979
  },
12983
12980
  },
@@ -596,7 +596,7 @@ cat << 'END_OF_FILE_CONTENT' > "package.json"
596
596
  "@tiptap/extension-link": "^2.11.5",
597
597
  "@tiptap/react": "^2.11.5",
598
598
  "@tiptap/starter-kit": "^2.11.5",
599
- "@olonjs/core": "^1.0.91",
599
+ "@olonjs/core": "^1.0.93",
600
600
  "clsx": "^2.1.1",
601
601
  "lucide-react": "^0.474.0",
602
602
  "react": "^19.0.0",
@@ -11651,9 +11651,8 @@ function normalizeManifestSlug(raw) {
11651
11651
  }
11652
11652
 
11653
11653
  async function loadWebMcpBuilders() {
11654
- const moduleUrl = pathToFileURL(
11655
- path.resolve(__dirname, '..', '..', 'packages', 'core', 'src', 'lib', 'webmcp-contracts.mjs')
11656
- ).href;
11654
+ const corePkgPath = path.dirname(fileURLToPath(import.meta.resolve('@olonjs/core/package.json')));
11655
+ const moduleUrl = pathToFileURL(path.resolve(corePkgPath, 'src', 'lib', 'webmcp-contracts.mjs')).href;
11657
11656
  return import(moduleUrl);
11658
11657
  }
11659
11658
  export default defineConfig({
@@ -11801,7 +11800,6 @@ export default defineConfig({
11801
11800
  resolve: {
11802
11801
  alias: {
11803
11802
  '@': path.resolve(__dirname, './src'),
11804
- '@olonjs/core': path.resolve(__dirname, '..', '..', 'packages', 'core', 'src', 'index.ts'),
11805
11803
  'next/link': path.resolve(__dirname, './src/shims/next-link.tsx'),
11806
11804
  },
11807
11805
  },
@@ -1646,7 +1646,7 @@ cat << 'END_OF_FILE_CONTENT' > "package.json"
1646
1646
  "@tiptap/extension-link": "^2.11.5",
1647
1647
  "@tiptap/react": "^2.11.5",
1648
1648
  "@tiptap/starter-kit": "^2.11.5",
1649
- "@olonjs/core": "^1.0.91",
1649
+ "@olonjs/core": "^1.0.93",
1650
1650
  "class-variance-authority": "^0.7.1",
1651
1651
  "clsx": "^2.1.1",
1652
1652
  "lucide-react": "^0.474.0",
@@ -12705,8 +12705,7 @@ cat << 'END_OF_FILE_CONTENT' > "tsconfig.json"
12705
12705
  "noFallthroughCasesInSwitch": true,
12706
12706
  "baseUrl": ".",
12707
12707
  "paths": {
12708
- "@/*": ["./src/*"],
12709
- "@olonjs/core": ["../../packages/core/src/index.ts"]
12708
+ "@/*": ["./src/*"]
12710
12709
  }
12711
12710
  },
12712
12711
  "include": ["src"],
@@ -12827,9 +12826,8 @@ function normalizeManifestSlug(raw) {
12827
12826
  }
12828
12827
 
12829
12828
  async function loadWebMcpBuilders() {
12830
- const moduleUrl = pathToFileURL(
12831
- path.resolve(__dirname, '..', '..', 'packages', 'core', 'src', 'lib', 'webmcp-contracts.mjs')
12832
- ).href;
12829
+ const corePkgPath = path.dirname(fileURLToPath(import.meta.resolve('@olonjs/core/package.json')));
12830
+ const moduleUrl = pathToFileURL(path.resolve(corePkgPath, 'src', 'lib', 'webmcp-contracts.mjs')).href;
12833
12831
  return import(moduleUrl);
12834
12832
  }
12835
12833
  export default defineConfig({
@@ -12977,7 +12975,6 @@ export default defineConfig({
12977
12975
  resolve: {
12978
12976
  alias: {
12979
12977
  '@': path.resolve(__dirname, './src'),
12980
- '@olonjs/core': path.resolve(__dirname, '..', '..', 'packages', 'core', 'src', 'index.ts'),
12981
12978
  'next/link': path.resolve(__dirname, './src/shims/next-link.tsx'),
12982
12979
  },
12983
12980
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@olonjs/cli",
3
- "version": "3.0.104",
3
+ "version": "3.0.106",
4
4
  "description": "The Sovereign CLI Engine for OlonJS.",
5
5
  "type": "module",
6
6
  "bin": {