@nuraly/runtime 0.1.5 → 0.1.6
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/dist/{CodeEditor-G6E8PUI7.js → CodeEditor-0GwD2UDB.js} +22 -22
- package/dist/{SmartAttributeHandler-C9vS-cHW.js → SmartAttributeHandler-B1UJKlqJ.js} +1 -1
- package/dist/{cssMode-B7NVlrDV.js → cssMode-BzqArQ52.js} +1 -1
- package/dist/{freemarker2-DS_7G9b8.js → freemarker2-XzXhMwTc.js} +1 -1
- package/dist/{handlebars-BDyyLkzw.js → handlebars-CmrcNfkM.js} +1 -1
- package/dist/{html-DphGFjig.js → html-BsvlsNx5.js} +1 -1
- package/dist/{htmlMode-4zNnSWFo.js → htmlMode-CmNePjzn.js} +1 -1
- package/dist/{javascript-CC1jWyQy.js → javascript-D-M-tA-x.js} +1 -1
- package/dist/{jsonMode-Bfzb6wZf.js → jsonMode-CKj6yF-8.js} +1 -1
- package/dist/{liquid-lTBpqagR.js → liquid-_8i5JYO-.js} +1 -1
- package/dist/{mdx-DX66Bp07.js → mdx-CiSJOftS.js} +1 -1
- package/dist/{micro-app-entry-DDsAWUJh.js → micro-app-entry-BT6Pk6bn.js} +1854 -1872
- package/dist/micro-app.bundle.js +1 -1
- package/dist/{python-BGUhyO4G.js → python-DNxbUiJS.js} +1 -1
- package/dist/{razor-DEVWQFSa.js → razor-BFH0wq9s.js} +1 -1
- package/dist/{tsMode-CYFi80Jf.js → tsMode-DfXg_Y5Y.js} +1 -1
- package/dist/{typescript-B1xIbH_T.js → typescript-DFCDgKOy.js} +1 -1
- package/dist/{xml-DmdvyqrE.js → xml-axhHDYch.js} +1 -1
- package/dist/{yaml-LGNo48fy.js → yaml-fWSpoHsZ.js} +1 -1
- package/package.json +1 -1
- package/vite.config.ts +4 -0
package/dist/micro-app.bundle.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as i } from "./CodeEditor-
|
|
1
|
+
import { m as i } from "./CodeEditor-0GwD2UDB.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.45.0(5e5af013f8d295555a7210df0d5f2cea0bf5dd56)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m } from "./CodeEditor-
|
|
1
|
+
import { m } from "./CodeEditor-0GwD2UDB.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.45.0(5e5af013f8d295555a7210df0d5f2cea0bf5dd56)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { t as O, m as I } from "./CodeEditor-
|
|
1
|
+
import { t as O, m as I } from "./CodeEditor-0GwD2UDB.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.45.0(5e5af013f8d295555a7210df0d5f2cea0bf5dd56)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as s } from "./CodeEditor-
|
|
1
|
+
import { m as s } from "./CodeEditor-0GwD2UDB.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.45.0(5e5af013f8d295555a7210df0d5f2cea0bf5dd56)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as r } from "./CodeEditor-
|
|
1
|
+
import { m as r } from "./CodeEditor-0GwD2UDB.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.45.0(5e5af013f8d295555a7210df0d5f2cea0bf5dd56)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as l } from "./CodeEditor-
|
|
1
|
+
import { m as l } from "./CodeEditor-0GwD2UDB.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.45.0(5e5af013f8d295555a7210df0d5f2cea0bf5dd56)
|
package/package.json
CHANGED
package/vite.config.ts
CHANGED
|
@@ -5,6 +5,10 @@ import { resolve } from 'path';
|
|
|
5
5
|
const isBundleBuild = process.env.BUILD_BUNDLE === 'true';
|
|
6
6
|
|
|
7
7
|
export default defineConfig({
|
|
8
|
+
define: {
|
|
9
|
+
// Replace process.env.NODE_ENV with a static value for browser bundles
|
|
10
|
+
'process.env.NODE_ENV': JSON.stringify('production')
|
|
11
|
+
},
|
|
8
12
|
build: {
|
|
9
13
|
target: 'esnext', // Support top-level await
|
|
10
14
|
// Don't empty outDir on bundle build to preserve regular build artifacts
|