Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Sharkey
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
bunnybeam
Sharkey
Commits
9d9e8a3c
Unverified
Commit
9d9e8a3c
authored
2 years ago
by
Masaya Suzuki
Committed by
GitHub
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
CONTRIBUTING: yarn -> pnpm (#9771)
parent
ed3e035a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CONTRIBUTING.md
+7
-7
7 additions, 7 deletions
CONTRIBUTING.md
with
7 additions
and
7 deletions
CONTRIBUTING.md
+
7
−
7
View file @
9d9e8a3c
...
...
@@ -44,7 +44,7 @@ Thank you for your PR! Before creating a PR, please check the following:
-
Check if there are any documents that need to be created or updated due to this change.
-
If you have added a feature or fixed a bug, please add a test case if possible.
-
Please make sure that tests and Lint are passed in advance.
-
You can run it with
`
yarn
test`
and
`
yarn
lint`
.
[
See more info
](
#testing
)
-
You can run it with
`
pnpm
test`
and
`
pnpm
lint`
.
[
See more info
](
#testing
)
-
If this PR includes UI changes, please attach a screenshot in the text.
Thanks for your cooperation 🤗
...
...
@@ -102,7 +102,7 @@ If your language is not listed in Crowdin, please open an issue.
During development, it is useful to use the
```
yarn
dev
pnpm
dev
```
command.
...
...
@@ -127,12 +127,12 @@ Alternatively, prepare an empty (data can be erased) DB and edit `.config/test.y
Run all test.
```
yarn
test
pnpm
test
```
#### Run specify test
```
yarn
jest -- foo.ts
pnpm
jest -- foo.ts
```
### e2e tests
...
...
@@ -177,9 +177,9 @@ vue-routerとの最大の違いは、niraxは複数のルーターが存在す
これにより、アプリ内ウィンドウでブラウザとは個別にルーティングすることなどが可能になります。
## Notes
### How to resolve conflictions occurred at
yarn.lock
?
### How to resolve conflictions occurred at
pnpm-lock.yaml
?
Just execute
`
yarn
`
to fix it.
Just execute
`
pnpm
`
to fix it.
### INSERTするときにはsaveではなくinsertを使用する
#6441
...
...
@@ -265,7 +265,7 @@ MongoDBは`null`で返してきてたので、その感覚で`if (x === null)`
### Migration作成方法
packages/backendで:
```
sh
yarn
dlx typeorm migration:generate
-d
ormconfig.js
-o
<migration name>
pnpm
dlx typeorm migration:generate
-d
ormconfig.js
-o
<migration name>
```
-
生成後、ファイルをmigration下に移してください
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment