wjec-one 4.0.3-alpha.1 → 4.0.3

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.
@@ -5,6 +5,8 @@ const HtmlWebpackPlugin = require('html-webpack-plugin');
5
5
  const path = require('path');
6
6
  const webpack = require('webpack');
7
7
 
8
+ const { generateFilename } = require('./utils');
9
+
8
10
  const appPath = fs.realpathSync(process.cwd());
9
11
  const scriptsPath = path.resolve(__dirname, '..');
10
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wjec-one",
3
- "version": "4.0.3-alpha.1",
3
+ "version": "4.0.3",
4
4
  "description": "",
5
5
  "main": "umd/index.js",
6
6
  "module": "index.js",
@@ -21,7 +21,7 @@
21
21
  "copy-project-types": "copyfiles wjec-one-project.d.ts dist",
22
22
  "lint": "eslint \"./!(dist|scratchpad|temp|test)/**/*.{ts,tsx}\"",
23
23
  "start-scratchpad": "webpack-dev-server --mode=development",
24
- "test": "wjec-one-scripts test --config ./jest.config.js --root=./auth --root=./localization --root=./services --root=./src --root=./store --root=./theme --root=./utils --skipFileCheck",
24
+ "test": "node scripts/test.js --config ./jest.config.js --root=./auth --root=./localization --root=./services --root=./src --root=./store --root=./theme --root=./utils --skipFileCheck",
25
25
  "test-coverage": "npm run test -- --coverage",
26
26
  "test-watch": "npm run test -- --watchAll",
27
27
  "build-ts": "npm run clear-temp && ttsc --project tsconfig.prod.json",