File tree 9 files changed +16604
-8956
lines changed
9 files changed +16604
-8956
lines changed Original file line number Diff line number Diff line change 26
26
with :
27
27
node-version : ${{ matrix.node-version }}
28
28
cache : ' npm'
29
- - run : yarn install --frozen-lockfile
29
+ - run : npm ci
30
30
- run : npm run build --if-present
31
31
- run : npm test
Original file line number Diff line number Diff line change 21
21
22
22
. " $( dirname " $0 " ) /_/husky.sh"
23
23
24
- yarn run lint-staged
24
+ npx lint-staged
Original file line number Diff line number Diff line change 4
4
lerna\.json
5
5
node_modules
6
6
package\.json
7
+ package-lock\.json
7
8
tsconfig(\.\w+)?\.json
8
9
typedoc\.json
9
- yarn\.lock
10
10
CODE_OF_CONDUCT\.md
11
11
DISCLAIMER-WIP
12
12
LICENSES
Original file line number Diff line number Diff line change @@ -37,22 +37,22 @@ all: build
37
37
38
38
.PHONY : build
39
39
build :
40
- @yarn
40
+ @npm install
41
41
42
42
.PHONY : clean
43
43
clean :
44
- @yarn run clean
44
+ @npm run clean
45
45
46
46
.PHONY : check
47
47
check : lint test
48
48
49
49
.PHONY : lint
50
50
lint : build
51
- @yarn lint
51
+ @npm run lint
52
52
53
53
.PHONY : test
54
54
test : build
55
- @yarn test
55
+ @npm run test
56
56
57
57
ifeq ($(vsn_tag ) ,)
58
58
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ See documentation on the website: <https://annotator.apache.org/docs/>
10
10
11
11
## How to build
12
12
13
- Build requirements are [ Node.JS] ( https://nodejs.org/ ) (>= 16) and [ yarn ] ( https://yarnpkg.com ) (>= 1.5.0 ).
13
+ Building Annatator libraries requires [ Node.JS] ( https://nodejs.org/ ) (>= 18 ).
14
14
All other dependencies are automatically installed as part of the build.
15
15
16
16
* ` npm run build ` -- builds the project
@@ -26,7 +26,7 @@ All other dependencies are automatically installed as part of the build.
26
26
27
27
# License
28
28
29
- This project is available as open source under the terms of the Apache 2.0 License.
29
+ This project is available as open source under the terms of the Apache 2.0 License.
30
30
For accurate information, please check individual files.
31
31
32
32
# Disclaimer
Original file line number Diff line number Diff line change 1
1
{
2
2
"version" : " 0.3.0" ,
3
- "npmClient" : " yarn" ,
4
- "packages" : [
5
- " packages/*"
6
- ],
7
3
"command" : {
8
4
"publish" : {
9
5
"preDistTag" : " dev" ,
You can’t perform that action at this time.
0 commit comments