@rws-framework/client 2.13.3 → 2.13.5
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/.bin/add-v.sh
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const fs = require('fs');
|
|
2
2
|
const chalk = require('chalk');
|
|
3
3
|
const path = require('path');
|
|
4
|
-
const tools = require('
|
|
4
|
+
const tools = require('../../../_tools');
|
|
5
5
|
|
|
6
6
|
module.exports = async (swPath) => {
|
|
7
7
|
const swFilePath = path.resolve(process.cwd(), swPath);
|
|
@@ -2,7 +2,7 @@ const { rwsPath } = require('@rws-framework/console');
|
|
|
2
2
|
const path = require('path');
|
|
3
3
|
const chalk = require('chalk');
|
|
4
4
|
|
|
5
|
-
const RWSWebpackPlugin = require('./
|
|
5
|
+
const RWSWebpackPlugin = require('./rws_webpack_plugin');
|
|
6
6
|
|
|
7
7
|
const buildInfo = require('../../cfg/build_steps/webpack/_info');
|
|
8
8
|
const { loadAliases } = require('../../cfg/build_steps/webpack/_aliases');
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
const path = require('path');
|
|
2
|
-
const _tools = require('
|
|
2
|
+
const _tools = require('../../_tools');
|
|
3
3
|
|
|
4
4
|
const _scss_compiler_builder = require('./scss/_compiler');
|
|
5
5
|
let _scss_compiler = null;
|
|
@@ -7,7 +7,7 @@ const _scss_import_builder = require('./scss/_import');
|
|
|
7
7
|
|
|
8
8
|
let _scss_import = null;
|
|
9
9
|
const _scss_fs_builder = require('./scss/_fs');
|
|
10
|
-
const { timingStart, timingStop } = require('
|
|
10
|
+
const { timingStart, timingStop } = require('../../cfg/build_steps/webpack/_timing');
|
|
11
11
|
let _scss_fs = null;
|
|
12
12
|
|
|
13
13
|
|
|
@@ -2,7 +2,7 @@ const path = require('path');
|
|
|
2
2
|
const fs = require('fs');
|
|
3
3
|
const os = require('os');
|
|
4
4
|
|
|
5
|
-
const RWSCssPlugin = require("../../../webpack/rws_scss_plugin");
|
|
5
|
+
const RWSCssPlugin = require("../../../builder/webpack/rws_scss_plugin");
|
|
6
6
|
const plugin = new RWSCssPlugin();
|
|
7
7
|
const JSON5 = require('json5');
|
|
8
8
|
const chalk = require('chalk');
|