@rws-framework/client 2.13.4 → 2.13.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/.bin/add-v.sh CHANGED
@@ -4,7 +4,7 @@ export VERSION=$1
4
4
 
5
5
  git add .
6
6
  git commit -m "v$VERSION"
7
- git tag $VERSION
7
+ git tag "$VERSION"
8
8
  git push
9
9
  git push origin $VERSION
10
10
  npm publish
@@ -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('../../_tools');
4
+ const tools = require('../../../_tools');
5
5
 
6
6
  module.exports = async (swPath) => {
7
7
  const swFilePath = path.resolve(process.cwd(), swPath);
@@ -128,7 +128,7 @@ const RWSWebpackWrapper = async (rwsFrontendConfig) => {
128
128
  // #SECTION RWS WEBPACK BUILD
129
129
  const cfgExport = createWebpackConfig(
130
130
  executionDir,
131
- __dirname,
131
+ path.resolve(__dirname, '..', '..'),
132
132
  _packageDir,
133
133
  isDev,
134
134
  devTools,
@@ -1,5 +1,5 @@
1
1
  const path = require('path');
2
- const _tools = require('../_tools');
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('../cfg/build_steps/webpack/_timing');
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');
@@ -10,9 +10,9 @@ const { timingCounterStart, timingCounterStop } = require('./_timing');
10
10
  const { rwsRuntimeHelper } = require('@rws-framework/console');
11
11
 
12
12
  function getRWSLoaders(packageDir, nodeModulesPath, tsConfigPath, devDebug) {
13
- const scssLoader = packageDir + '/webpack/loaders/rws_fast_scss_loader.js';
14
- const tsLoader = packageDir + '/webpack/loaders/rws_fast_ts_loader.js';
15
- const htmlLoader = packageDir + '/webpack/loaders/rws_fast_html_loader.js';
13
+ const scssLoader = packageDir + '/builder/webpack/loaders/rws_fast_scss_loader.js';
14
+ const tsLoader = packageDir + '/builder/webpack/loaders/rws_fast_ts_loader.js';
15
+ const htmlLoader = packageDir + '/builder/webpack/loaders/rws_fast_html_loader.js';
16
16
 
17
17
 
18
18
  return [
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@rws-framework/client",
3
3
  "private": false,
4
- "version": "2.13.4",
4
+ "version": "2.13.6",
5
5
  "main": "src/index.ts",
6
6
  "scripts": {
7
7
  "docs": "typedoc --tsconfig ./tsconfig.json"