@atom.io/template-react-node-backend 0.0.46 → 0.0.47

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @atom.io/template-react-node-backend@0.0.46 build /home/runner/work/wayforge/wayforge/templates/react-node-backend
2
+ > @atom.io/template-react-node-backend@0.0.47 build /home/runner/work/wayforge/wayforge/templates/react-node-backend
3
3
  > vite build
4
4
 
5
5
  rolldown-vite v7.3.1 building client environment for production...
@@ -9,9 +9,9 @@ computing gzip size...
9
9
  dist/index.html 0.45 kB │ gzip: 0.29 kB
10
10
  dist/assets/index-CqTfTEH3.css 2.97 kB │ gzip: 1.02 kB
11
11
  dist/assets/index-C1hPfEiE.js 505.04 kB │ gzip: 134.32 kB
12
+ ✓ built in 1.13s
12
13
  [plugin builtin:vite-reporter]
13
14
  (!) Some chunks are larger than 500 kB after minification. Consider:
14
15
  - Using dynamic import() to code-split the application
15
16
  - Use build.rollupOptions.output.manualChunks to improve chunking: https://rollupjs.org/configuration-options/#output-manualchunks
16
17
  - Adjust chunk size limit for this warning via build.chunkSizeWarningLimit.
17
- ✓ built in 1.65s
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @atom.io/template-react-node-backend
2
2
 
3
+ ## 0.0.47
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [7b7227e]
8
+ - atom.io@0.46.23
9
+
3
10
  ## 0.0.46
4
11
 
5
12
  ### Patch Changes
package/package.json CHANGED
@@ -1,27 +1,32 @@
1
1
  {
2
2
  "name": "@atom.io/template-react-node-backend",
3
- "version": "0.0.46",
3
+ "version": "0.0.47",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/jeremybanka/wayforge.git",
10
+ "directory": "templates/react-node-backend"
11
+ },
7
12
  "type": "module",
8
13
  "dependencies": {
9
14
  "react": "19.2.4",
10
15
  "react-dom": "19.2.4",
11
16
  "zod": "4.3.6",
12
- "atom.io": "0.46.22"
17
+ "atom.io": "0.46.23"
13
18
  },
14
19
  "devDependencies": {
15
20
  "@types/node": "25.0.10",
16
- "@types/react": "19.2.10",
21
+ "@types/react": "19.2.13",
17
22
  "@types/react-dom": "19.2.3",
18
- "@vitejs/plugin-react": "5.1.2",
23
+ "@vitejs/plugin-react": "5.1.3",
19
24
  "babel-plugin-react-compiler": "1.0.0",
20
25
  "concurrently": "9.2.1",
21
26
  "eslint": "9.39.2",
22
27
  "eslint-plugin-react-hooks": "7.0.1",
23
- "eslint-plugin-react-refresh": "0.4.26",
24
- "globals": "17.2.0",
28
+ "eslint-plugin-react-refresh": "0.5.0",
29
+ "globals": "17.3.0",
25
30
  "typescript": "5.9.3",
26
31
  "typescript-eslint": "8.54.0",
27
32
  "vite": "npm:rolldown-vite@7.3.1"
package/src/App.tsx CHANGED
@@ -252,7 +252,7 @@ function NewTodo(): React.JSX.Element {
252
252
  const change = useCallback((e: React.ChangeEvent<HTMLInputElement>) => {
253
253
  setText(e.target.value)
254
254
  }, [])
255
- const submit = useCallback((e: React.FormEvent<HTMLFormElement>) => {
255
+ const submit = useCallback((e: React.SubmitEvent<HTMLFormElement>) => {
256
256
  e.preventDefault()
257
257
  void addTodo()
258
258
  }, [])