@omnia/tooling-vue 8.0.451-dev → 8.0.453-dev
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/internal-do-not-import-from-here/config/omnia.shared.vendor.manifest.json +1 -1
- package/internal-do-not-import-from-here/config/omnia.vendor.manifest.json +1 -1
- package/internal-do-not-import-from-here/rspack/bundle.js +2 -2
- package/internal-do-not-import-from-here/tasks/ComponentDocRegistrations.js +1 -1
- package/internal-do-not-import-from-here/tasks/bundle.js +2 -2
- package/internal-do-not-import-from-here/tasks/vendor.js +3 -3
- package/internal-do-not-import-from-here/vite/plugins/OmniaPlugin.js +1 -1
- package/package.json +3 -3
|
@@ -810,7 +810,7 @@ function createVueWebpackConfig(currentEntry, entries, bundleOutputDir, viteHmrO
|
|
|
810
810
|
cacheWithContext: true,
|
|
811
811
|
descriptionFiles: ['package.json'],
|
|
812
812
|
alias: Object.assign({}, $.tooling.core.getWebpackResolveAlias(), (getBuildOption()?.moduleOptions?.alias || {}), {
|
|
813
|
-
|
|
813
|
+
'axios$': $.tooling.utils.root('node_modules/axios/dist/esm/axios.js'),
|
|
814
814
|
'typestyle$': 'typestyle/lib.es2015/index.js',
|
|
815
815
|
'vue$': 'vue/dist/vue.runtime.esm-bundler.js',
|
|
816
816
|
'@microsoft/signalr$': '@microsoft/signalr/dist/webworker/signalr.js',
|
|
@@ -996,7 +996,7 @@ function getBaseWebpackConfigForManifestMetadata(entry, bundleOutputDir) {
|
|
|
996
996
|
cacheWithContext: true,
|
|
997
997
|
descriptionFiles: ['package.json'],
|
|
998
998
|
alias: Object.assign({}, $.tooling.core.getWebpackResolveAlias(), ($.composers.BuildConfigurationRegistry.getBuildOptions()?.moduleOptions?.alias || {}), {
|
|
999
|
-
|
|
999
|
+
'axios$': $.tooling.utils.root('node_modules/axios/dist/esm/axios.js'),
|
|
1000
1000
|
'typestyle$': 'typestyle/lib.es2015/index.js',
|
|
1001
1001
|
'vue$': 'vue/dist/vue.runtime.esm-bundler.js',
|
|
1002
1002
|
'@microsoft/signalr': '@microsoft/signalr/dist/webworker/signalr.js',
|
|
@@ -16,9 +16,9 @@ $.webpack({
|
|
|
16
16
|
context: $.tooling.utils.root(""),
|
|
17
17
|
resolve: {
|
|
18
18
|
extensions: ['.js', '.css'],
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
19
|
+
alias: {
|
|
20
|
+
'axios$': $.tooling.utils.root('node_modules/axios/dist/esm/axios.js'),
|
|
21
|
+
},
|
|
22
22
|
},
|
|
23
23
|
optimization: {
|
|
24
24
|
minimize: false,
|
|
@@ -9,7 +9,7 @@ function omniaPlugin(options) {
|
|
|
9
9
|
alias: {
|
|
10
10
|
'@microsoft/signalr': '@microsoft/signalr/dist/webworker/signalr.js',
|
|
11
11
|
'splitpanes': 'splitpanes/dist/splitpanes.es.js',
|
|
12
|
-
'axios': 'axios/dist/axios.js',
|
|
12
|
+
'axios$': 'axios/dist/esm/axios.js',
|
|
13
13
|
'broadcast-channel': 'broadcast-channel/dist/esbrowser/index.js',
|
|
14
14
|
//'@vue/composition-api': '@vue/composition-api/dist/vue-composition-api.mjs',
|
|
15
15
|
// '@vue/babel-helper-vue-jsx-merge-props': '@vue/babel-helper-vue-jsx-merge-props/dist/helper.js',
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnia/tooling-vue",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "8.0.
|
|
4
|
+
"version": "8.0.453-dev",
|
|
5
5
|
"description": "Used to bundle and serve manifests web component that build on Vue framework.",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
],
|
|
20
20
|
"author": "Omnia Digital Workplace AB",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@omnia/fx-models": "8.0.
|
|
23
|
-
"@omnia/tooling-composers": "8.0.
|
|
22
|
+
"@omnia/fx-models": "8.0.453-dev",
|
|
23
|
+
"@omnia/tooling-composers": "8.0.453-dev",
|
|
24
24
|
"@types/mousetrap": "1.5.34",
|
|
25
25
|
"@types/quill": "1.3.6",
|
|
26
26
|
"@types/zepto": "1.0.29",
|