@koi-language/koi 1.0.0 → 1.0.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/package.json +1 -1
- package/src/cli/koi.js +1 -1
- package/src/compiler/transpiler.js +2 -2
package/package.json
CHANGED
package/src/cli/koi.js
CHANGED
|
@@ -109,8 +109,8 @@ export class KoiTranspiler {
|
|
|
109
109
|
code += this.emit(`// Using local runtime from KOI_RUNTIME_PATH: ${koiRuntimePath}\n`);
|
|
110
110
|
} else {
|
|
111
111
|
// Production mode: use package imports
|
|
112
|
-
runtimeImportPath = 'koi-
|
|
113
|
-
routerImportPath = 'koi-
|
|
112
|
+
runtimeImportPath = '@koi-language/koi';
|
|
113
|
+
routerImportPath = '@koi-language/koi/router';
|
|
114
114
|
}
|
|
115
115
|
|
|
116
116
|
// Store routerImportPath for later use
|