@stanlemon/webdev 0.2.70 → 0.2.71

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/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  This repository contains all of my usual environment setup for babel, webpack and jest for developing React apps. I got tired of copying and pasting the same config files everywhere, so I put this together.
6
6
 
7
- To get started, either copy [apps/template](../../apps/template/) or create these files:
7
+ To get started, create these files:
8
8
 
9
9
  package.json
10
10
  ```json
@@ -44,4 +44,6 @@ export { default } from "@stanlemon/webdev/jest.config.js";
44
44
 
45
45
  Then run `npm install` and start coding!
46
46
 
47
+ If you need the old full-stack starter app, use the historical snapshot at [deprecate-2026-03-app-template-hello-world-servers](https://github.com/stanlemon/javascript/tree/deprecate-2026-03-app-template-hello-world-servers/apps/template).
48
+
47
49
  _Eventually I'll add some CLI tooling to streamline this further._
package/jest.config.js CHANGED
@@ -13,10 +13,8 @@ const esModules = [
13
13
  "lowdb",
14
14
  "steno", // Used by lowdb
15
15
  "lodash-es",
16
- "wouter", // Used by @atanlemon/app-template
16
+ "wouter",
17
17
  "@stanlemon/webdev",
18
- "@stanlemon/server",
19
- "@stanlemon/server-with-auth",
20
18
  ].join("|");
21
19
 
22
20
  export default {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stanlemon/webdev",
3
- "version": "0.2.70",
3
+ "version": "0.2.71",
4
4
  "description": "My typical web development setup, but without all the copy and paste.",
5
5
  "keywords": [
6
6
  "webpack",
@@ -11,7 +11,7 @@
11
11
  "author": "Stan Lemon <stanlemon@users.noreply.github.com>",
12
12
  "license": "MIT",
13
13
  "engines": {
14
- "node": ">=22.21.1"
14
+ "node": ">=24.14.1"
15
15
  },
16
16
  "type": "module",
17
17
  "scripts": {
@@ -46,20 +46,22 @@
46
46
  "typescript": "^5.9.3",
47
47
  "webpack": "^5.105.4",
48
48
  "webpack-bundle-analyzer": "^5.3.0",
49
- "webpack-cli": "^6.0.1",
49
+ "webpack-cli": "^7.0.2",
50
50
  "webpack-dev-server": "^5.2.3"
51
51
  },
52
52
  "devDependencies": {
53
+ "@types/aria-query": "^5.0.4",
53
54
  "@types/jest": "30.0.0",
54
55
  "@types/react": "19.2.14",
55
56
  "@types/react-dom": "19.2.3",
56
57
  "@types/webpack": "5.28.5",
57
58
  "@types/webpack-env": "1.18.8",
58
59
  "react": "19.2.4",
59
- "react-dom": "19.2.4"
60
+ "react-dom": "19.2.4",
61
+ "uuid": "^8.3.2"
60
62
  },
61
63
  "peerDependencies": {
62
64
  "react": ">=18.0.0",
63
65
  "react-dom": ">=19.1.0"
64
66
  }
65
- }
67
+ }