@omnia/tooling-vue 8.0.353-dev → 8.0.354-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.
|
@@ -1425,7 +1425,7 @@ function buildModuleName() {
|
|
|
1425
1425
|
var buildOptions = getBuildOption();
|
|
1426
1426
|
if (buildOptions && buildOptions.moduleOptions && buildOptions.moduleOptions.enableTransformResourcePath) {
|
|
1427
1427
|
if (modulePath.indexOf('./node_modules/') === -1 // ignore from npm package and in wwwwroot .js file
|
|
1428
|
-
&&
|
|
1428
|
+
&& modulePath.indexOf('./wwwroot/') === -1
|
|
1429
1429
|
&& modulePath.indexOf('./omnia/fx/models/ConfigurationComposers') === -1 // ignore comment interface for special case here
|
|
1430
1430
|
&& $.fs.existsSync(modulePath)) {
|
|
1431
1431
|
let stream = $.fs.readFileSync(modulePath, 'utf8');
|
|
@@ -1433,7 +1433,7 @@ function buildModuleName() {
|
|
|
1433
1433
|
if (regexResult && regexResult.length > 1) {
|
|
1434
1434
|
let foundPath = _transformResourcepaths.find(resource => resource.id === regexResult[1] && getPathWithoutExtension(resource.original) !== getPathWithoutExtension(modulePath));
|
|
1435
1435
|
if (foundPath) {
|
|
1436
|
-
console.log(
|
|
1436
|
+
console.log(modulePath, foundPath);
|
|
1437
1437
|
throw new Error(modulePath + " : Error, already exist transform resource path is " + regexResult[1]);
|
|
1438
1438
|
}
|
|
1439
1439
|
_transformResourcepaths.push({ id: regexResult[1], original: modulePath }); // trim file extension such as .js, .ts
|
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.354-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.354-dev",
|
|
23
|
+
"@omnia/tooling-composers": "8.0.354-dev",
|
|
24
24
|
"@types/mousetrap": "1.5.34",
|
|
25
25
|
"@types/quill": "1.3.6",
|
|
26
26
|
"@types/zepto": "1.0.29",
|