@henderea/static-site-builder 1.10.75 → 1.10.77

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@henderea/static-site-builder",
3
- "version": "1.10.75",
3
+ "version": "1.10.77",
4
4
  "description": "A static site builder",
5
5
  "main": "index.js",
6
6
  "repository": "henderea/static-site-builder.git",
@@ -26,7 +26,7 @@
26
26
  },
27
27
  "type": "module",
28
28
  "dependencies": {
29
- "@babel/core": "^7.25.2",
29
+ "@babel/core": "^7.25.8",
30
30
  "babel-loader": "^9.2.1",
31
31
  "case-sensitive-paths-webpack-plugin": "^2.4.0",
32
32
  "chalk": "^5.3.0",
@@ -48,9 +48,9 @@
48
48
  "moment": "^2.30.1",
49
49
  "moment-locales-webpack-plugin": "^1.2.0",
50
50
  "postcss-loader": "^8.1.1",
51
- "postcss-preset-env": "^10.0.5",
51
+ "postcss-preset-env": "^10.0.7",
52
52
  "recursive-readdir": "^2.2.3",
53
- "sass": "^1.79.3",
53
+ "sass": "^1.79.5",
54
54
  "sass-loader": "^16.0.2",
55
55
  "strip-ansi": "^7.1.0",
56
56
  "style-loader": "^4.0.0",
@@ -62,14 +62,14 @@
62
62
  "workbox-webpack-plugin": "^7.1.0"
63
63
  },
64
64
  "devDependencies": {
65
- "@typescript-eslint/eslint-plugin": "^7.18.0",
66
- "@typescript-eslint/parser": "^7.18.0",
67
- "eslint": "^8.57.1",
68
- "eslint-config-henderea": "^1.1.55",
69
- "eslint-plugin-import": "^2.30.0",
70
- "typescript": "^5.6.2"
71
- },
72
- "eslintConfig": {
73
- "extends": "henderea"
65
+ "@stylistic/eslint-plugin": "^2.9.0",
66
+ "@typescript-eslint/eslint-plugin": "^8.8.1",
67
+ "@typescript-eslint/parser": "^8.8.1",
68
+ "eslint": "^9.12.0",
69
+ "eslint-config-henderea": "^2.0.9",
70
+ "eslint-plugin-import": "^2.31.0",
71
+ "globals": "^15.11.0",
72
+ "typescript": "^5.6.3",
73
+ "typescript-eslint": "^8.8.1"
74
74
  }
75
75
  }
@@ -19,7 +19,7 @@ export default function checkRequiredFiles(files) {
19
19
  fs.accessSync(filePath, fs.F_OK);
20
20
  });
21
21
  return true;
22
- } catch (err) {
22
+ } catch (_err) {
23
23
  var dirName = path.dirname(currentFilePath);
24
24
  var fileName = path.basename(currentFilePath);
25
25
  console.log(chalk.red('Could not find a required file.'));
@@ -34,7 +34,7 @@ export default function printBuildError(err) {
34
34
  ),
35
35
  '\n'
36
36
  );
37
- } catch (ignored) {
37
+ } catch (_ignored) {
38
38
  console.log('Failed to minify the bundle.', err);
39
39
  }
40
40
  console.log('Read more here: http://bit.ly/CRA-build-minify');