@oss-ma/tpl 1.0.36 → 1.0.37
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
|
@@ -26,12 +26,12 @@ jobs:
|
|
|
26
26
|
persist-credentials: false
|
|
27
27
|
|
|
28
28
|
- name: Initialize CodeQL
|
|
29
|
-
uses: github/codeql-action/init@
|
|
29
|
+
uses: github/codeql-action/init@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f
|
|
30
30
|
with:
|
|
31
31
|
languages: javascript-typescript
|
|
32
32
|
queries: security-extended
|
|
33
33
|
|
|
34
34
|
- name: Perform CodeQL Analysis
|
|
35
|
-
uses: github/codeql-action/analyze@
|
|
35
|
+
uses: github/codeql-action/analyze@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f
|
|
36
36
|
with:
|
|
37
37
|
category: "/language:javascript-typescript"
|
|
@@ -2,7 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
Next.js 15 · App Router · TypeScript
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Overview
|
|
6
|
+
|
|
7
|
+
Modern Next.js application with TypeScript, App Router, and professional tooling.
|
|
8
|
+
|
|
9
|
+
## Quickstart
|
|
6
10
|
|
|
7
11
|
```bash
|
|
8
12
|
npm run dev
|
|
@@ -19,7 +23,7 @@ npm run dev
|
|
|
19
23
|
- `npm run format` — Format code with Prettier
|
|
20
24
|
- `npm run typecheck` — Type check with TypeScript
|
|
21
25
|
|
|
22
|
-
##
|
|
26
|
+
## Architecture
|
|
23
27
|
|
|
24
28
|
```
|
|
25
29
|
src/
|
|
@@ -29,12 +33,22 @@ src/
|
|
|
29
33
|
└── lib/ # Library code (providers, etc.)
|
|
30
34
|
```
|
|
31
35
|
|
|
36
|
+
See [ADR documentation](docs/adr/) for architectural decisions.
|
|
37
|
+
|
|
32
38
|
## Standards
|
|
33
39
|
|
|
34
40
|
This project follows the [@oss-ma/tpl](https://www.npmjs.com/package/@oss-ma/tpl) standard.
|
|
35
41
|
|
|
36
42
|
Run `npx @oss-ma/tpl check` to validate compliance.
|
|
37
43
|
|
|
44
|
+
## Contributing
|
|
45
|
+
|
|
46
|
+
1. Fork the repository
|
|
47
|
+
2. Create a feature branch
|
|
48
|
+
3. Make your changes
|
|
49
|
+
4. Run `npm run lint && npm test`
|
|
50
|
+
5. Submit a pull request
|
|
51
|
+
|
|
38
52
|
## Security
|
|
39
53
|
|
|
40
54
|
See [SECURITY.md](SECURITY.md) for reporting vulnerabilities.
|