Skip to content

Commit ae3fb5d

Browse files
Create lint.sh (#84)
* Create lint.sh * Update CHANGELOG.md
1 parent 8488309 commit ae3fb5d

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
### Added
11+
12+
- lint.sh file
13+
1014
## [0.2.24] - 2024-01-29
1115

1216
### Fixed

lint.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
cd node/
4+
[ -d node_modules ] && rm -rf node_modules
5+
yarn cache clean
6+
yarn --frozen-lockfile
7+
yarn lint

0 commit comments

Comments
 (0)