Skip to content

Commit 256815b

Browse files
authored
release v1.0.0-alpha.26 (#186)
2 parents 0a2a9b4 + d2767f2 commit 256815b

File tree

417 files changed

+16604
-33819
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

417 files changed

+16604
-33819
lines changed

.changeset/config.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3-
"changelog": "@changesets/cli/changelog",
4-
"commit": false,
5-
"fixed": [],
6-
"linked": [],
7-
"access": "restricted",
8-
"baseBranch": "main",
9-
"updateInternalDependencies": "patch",
10-
"ignore": []
2+
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3+
"changelog": "@changesets/cli/changelog",
4+
"commit": false,
5+
"fixed": [],
6+
"linked": [],
7+
"access": "restricted",
8+
"baseBranch": "main",
9+
"updateInternalDependencies": "patch",
10+
"ignore": []
1111
}

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ about: Create a report to help us improve
44
title: ''
55
labels: ''
66
assignees: ''
7-
87
---
98

109
**Describe the bug**
1110
A clear and concise description of what the bug is.
1211

1312
**To Reproduce**
1413
Steps to reproduce the behavior:
15-
1.
16-
2.
17-
3.
14+
15+
1.
16+
2.
17+
3.
1818

1919
**Expected behavior**
2020
A clear and concise description of what you expected to happen.
@@ -23,10 +23,11 @@ A clear and concise description of what you expected to happen.
2323
If applicable, add screenshots to help explain your problem.
2424

2525
**Environment (please complete the following information):**
26-
- OS: [e.g. Mac OS 13.0]
27-
- Node version: [e.g. 16.15.0]
28-
- NPM version: [e.g. 8.19.2]
29-
- Database type: [e.g. Postgresql]
26+
27+
- OS: [e.g. Mac OS 13.0]
28+
- Node version: [e.g. 16.15.0]
29+
- NPM version: [e.g. 8.19.2]
30+
- Database type: [e.g. Postgresql]
3031

3132
**Additional context**
3233
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ about: Suggest an idea for this project
44
title: ''
55
labels: ''
66
assignees: ''
7-
87
---
98

109
**Is your feature request related to a problem? Please describe.**

.github/workflows/build-test.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ env:
99

1010
on:
1111
push:
12-
branches: ['dev', 'main']
12+
branches: ['dev', 'main', 'canary']
1313
pull_request:
14-
branches: ['dev', 'main']
14+
branches: ['dev', 'main', 'canary']
1515

1616
jobs:
1717
build:
@@ -34,5 +34,12 @@ jobs:
3434
node-version: ${{ matrix.node-version }}
3535
cache: 'pnpm'
3636
- run: pnpm install --frozen-lockfile
37-
- run: pnpm run build
37+
- run: |
38+
if [[ $GITHUB_REF == 'refs/heads/canary' ]]; then
39+
DEFAULT_NPM_TAG=canary pnpm run build
40+
else
41+
DEFAULT_NPM_TAG=latest pnpm run build
42+
fi
43+
# install again for internal dependencies
44+
- run: pnpm install --frozen-lockfile
3845
- run: pnpm run test

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ dist
44
.DS_Store
55
.vscode/settings.json
66
.env.local
7+
.npmcache

.prettierignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
.git
2+
node_modules
3+
dist
4+
generated
5+
.vercel
6+
.next
7+
8+
package.json
9+
package-lock.json
10+
pnpm-*.yaml
11+
12+
test-run
13+
coverage
14+
.vscode
15+
16+
samples/todo/lib/hooks
17+
samples/todo/server/routers/generated

.prettierrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"tabWidth": 4,
3+
"useTabs": false,
4+
"printWidth": 120,
5+
"singleQuote": true
6+
}

.vscode/extensions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
44

55
// List of extensions which should be recommended for users of this workspace.
6-
"recommendations": ["langium.langium-vscode"]
6+
"recommendations": ["langium.langium-vscode", "firsttris.vscode-jest-runner"]
77
}

.vscode/launch.json

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,17 @@
77
"configurations": [
88
{
99
"name": "Generate for Todo Sample",
10-
"program": "${workspaceFolder}/packages/schema/bin/cli",
10+
"program": "${workspaceFolder}/packages/schema/dist/bin/cli",
1111
"cwd": "${workspaceFolder}/samples/todo/",
1212
"args": [
13-
"generate",
14-
"${workspaceFolder}/samples/todo/schema.zmodel"
13+
"generate"
1514
],
1615
"request": "launch",
1716
"skipFiles": ["<node_internals>/**"],
18-
"type": "node"
17+
"type": "node",
18+
"env": {
19+
"NODE_PATH": "${workspaceFolder}/samples/todo/node_modules"
20+
}
1921
},
2022
{
2123
"name": "Attach",
@@ -40,6 +42,13 @@
4042
"skipFiles": ["<node_internals>/**"],
4143
"sourceMaps": true,
4244
"outFiles": ["${workspaceFolder}/bundle/**/*.js"]
45+
},
46+
{
47+
"name": "Todo sample: debug server-side",
48+
"type": "node-terminal",
49+
"request": "launch",
50+
"command": "pnpm dev",
51+
"cwd": "${workspaceFolder}/samples/todo/"
4352
}
4453
]
4554
}

CODE_OF_CONDUCT.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -17,24 +17,24 @@ diverse, inclusive, and healthy community.
1717
Examples of behavior that contributes to a positive environment for our
1818
community include:
1919

20-
* Demonstrating empathy and kindness toward other people
21-
* Being respectful of differing opinions, viewpoints, and experiences
22-
* Giving and gracefully accepting constructive feedback
23-
* Accepting responsibility and apologizing to those affected by our mistakes,
24-
and learning from the experience
25-
* Focusing on what is best not just for us as individuals, but for the
26-
overall community
20+
- Demonstrating empathy and kindness toward other people
21+
- Being respectful of differing opinions, viewpoints, and experiences
22+
- Giving and gracefully accepting constructive feedback
23+
- Accepting responsibility and apologizing to those affected by our mistakes,
24+
and learning from the experience
25+
- Focusing on what is best not just for us as individuals, but for the
26+
overall community
2727

2828
Examples of unacceptable behavior include:
2929

30-
* The use of sexualized language or imagery, and sexual attention or
31-
advances of any kind
32-
* Trolling, insulting or derogatory comments, and personal or political attacks
33-
* Public or private harassment
34-
* Publishing others' private information, such as a physical or email
35-
address, without their explicit permission
36-
* Other conduct which could reasonably be considered inappropriate in a
37-
professional setting
30+
- The use of sexualized language or imagery, and sexual attention or
31+
advances of any kind
32+
- Trolling, insulting or derogatory comments, and personal or political attacks
33+
- Public or private harassment
34+
- Publishing others' private information, such as a physical or email
35+
address, without their explicit permission
36+
- Other conduct which could reasonably be considered inappropriate in a
37+
professional setting
3838

3939
## Enforcement Responsibilities
4040

@@ -106,7 +106,7 @@ Violating these terms may lead to a permanent ban.
106106
### 4. Permanent Ban
107107

108108
**Community Impact**: Demonstrating a pattern of violation of community
109-
standards, including sustained inappropriate behavior, harassment of an
109+
standards, including sustained inappropriate behavior, harassment of an
110110
individual, or aggression toward or disparagement of classes of individuals.
111111

112112
**Consequence**: A permanent ban from any sort of public interaction within

0 commit comments

Comments
 (0)