@rws-framework/client 2.13.4 → 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
@@ -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);
@@ -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');
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.5",
5
5
  "main": "src/index.ts",
6
6
  "scripts": {
7
7
  "docs": "typedoc --tsconfig ./tsconfig.json"