@oss-ma/tpl 1.0.32 → 1.0.33

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": "@oss-ma/tpl",
3
- "version": "1.0.32",
3
+ "version": "1.0.33",
4
4
  "description": "Generate, enforce and maintain clean project architectures",
5
5
  "type": "module",
6
6
  "repository": {
@@ -7,7 +7,6 @@
7
7
  "build": "next build",
8
8
  "start": "next start",
9
9
  "lint": "next lint",
10
- "lint:fix": "next lint --fix",
11
10
  "format": "prettier -w .",
12
11
  "typecheck": "tsc --noEmit",
13
12
  "test": "jest --passWithNoTests",
@@ -17,26 +16,25 @@
17
16
  "audit": "npm audit --audit-level=high"
18
17
  },
19
18
  "dependencies": {
20
- "next": "^14.2.0",
21
- "react": "^18.3.0",
22
- "react-dom": "^18.3.0"{{#if state}},
23
- "zustand": "^4.5.0"{{/if}}{{#if fetching}},
19
+ "next": "^15.1.0",
20
+ "react": "^19.0.0",
21
+ "react-dom": "^19.0.0"{{#if state}},
22
+ "zustand": "^5.0.0"{{/if}}{{#if fetching}},
24
23
  "@tanstack/react-query": "^5.56.0"{{/if}}
25
24
  },
26
25
  "devDependencies": {
27
26
  "@commitlint/cli": "^19.3.0",
28
- "@commitlint/config-conventional": "^19.2.0",
29
- "@eslint/js": "^9.0.0",{{#if fetching}}
27
+ "@commitlint/config-conventional": "^19.2.0",{{#if fetching}}
30
28
  "@tanstack/react-query-devtools": "^5.56.0",{{/if}}
31
29
  "@testing-library/jest-dom": "^6.5.0",
32
30
  "@testing-library/react": "^16.0.0",
33
31
  "@testing-library/user-event": "^14.5.0",
34
32
  "@types/jest": "^29.5.0",
35
33
  "@types/node": "^20.0.0",
36
- "@types/react": "^18.3.0",
37
- "@types/react-dom": "^18.3.0",
38
- "eslint": "^9.0.0",
39
- "eslint-config-next": "^14.2.0",
34
+ "@types/react": "^19.0.0",
35
+ "@types/react-dom": "^19.0.0",
36
+ "eslint": "^8.57.0",
37
+ "eslint-config-next": "^15.1.0",
40
38
  "husky": "^9.0.0",
41
39
  "jest": "^29.7.0",
42
40
  "jest-environment-jsdom": "^29.7.0",
@@ -24,7 +24,6 @@ export function ExampleFeature() {
24
24
  const { count, increment, decrement, reset } = useCounterStore();
25
25
  {{/if}}
26
26
  {{#if fetching}}
27
-
28
27
  const { data: posts, isLoading, isError } = useQuery({
29
28
  queryKey: ["posts"],
30
29
  queryFn: fetchPosts,
@@ -60,11 +59,6 @@ export function ExampleFeature() {
60
59
  )}
61
60
  </div>
62
61
  {{/if}}
63
- {{#unless state}}
64
- {{#unless fetching}}
65
- <p>Feature module — add your components here.</p>
66
- {{/unless}}
67
- {{/unless}}
68
62
  </section>
69
63
  );
70
64
  }
@@ -1,7 +0,0 @@
1
- import type { NextConfig } from "next";
2
-
3
- const nextConfig: NextConfig = {
4
- reactStrictMode: true,
5
- };
6
-
7
- export default nextConfig;