mirror of
https://github.com/swc-project/swc.git
synced 2024-11-26 09:54:22 +03:00
chore(repo): Make git commit faster (#4353)
This commit is contained in:
parent
320e27fb52
commit
f7df3d8f24
@ -3,9 +3,9 @@
|
||||
|
||||
yarn lint-staged
|
||||
|
||||
|
||||
if command -v find &> /dev/null
|
||||
# Remove empty directories
|
||||
if command -v fd &> /dev/null
|
||||
then
|
||||
find . -name '.DS_Store' -type f -delete
|
||||
find . -type d -empty -delete
|
||||
fd -H '^\.DS_Store$' -tf -X rm
|
||||
fd -te -td -X rmdir
|
||||
fi
|
||||
|
@ -65,6 +65,17 @@ Steps to get started:
|
||||
|
||||
## Getting your development environment set up
|
||||
|
||||
### Optional CLI tools
|
||||
|
||||
CLI tools below will help development.
|
||||
Note that these tools are optional.
|
||||
|
||||
- [fd](https://github.com/sharkdp/fd)
|
||||
|
||||
This is used for performant file operations in git hooks.
|
||||
|
||||
---
|
||||
|
||||
After cloning the project there are a few steps required to get the project running.
|
||||
For running all tests, take the following steps:
|
||||
|
||||
@ -95,7 +106,7 @@ For running all tests, take the following steps:
|
||||
|
||||
5. Add wasm32-wasi target
|
||||
|
||||
`rustup target add wasm32-wasi`
|
||||
`rustup target add wasm32-wasi`
|
||||
|
||||
6. Ensure you're using Node.JS >= 16
|
||||
|
||||
@ -106,10 +117,12 @@ For running all tests, take the following steps:
|
||||
```bash
|
||||
cargo test --all --no-default-features --features swc_v1
|
||||
```
|
||||
|
||||
Or
|
||||
|
||||
```bash
|
||||
cargo test --all --no-default-features --features swc_v2
|
||||
```
|
||||
cargo test --all --no-default-features --features swc_v2
|
||||
```
|
||||
|
||||
## Running tests per package
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user