Skip to content

Commit adaef1f

Browse files
author
Xiaoxing Hu
committed
fix github actions
- remove yarn plugin - install deps instead of lerna bootstrap - add missing files
1 parent 29c8c10 commit adaef1f

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

.github/workflows/ut.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ jobs:
1515
node-version: 14
1616
- name: bootstrap and test
1717
run: |
18-
yarn run bootstrap
18+
yarn install
1919
yarn run compile
2020
yarn test

.yarnrc.yml

-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,2 @@
1-
plugins:
2-
- path: .yarn/plugins/@yarnpkg/plugin-typescript.cjs
3-
spec: "@yarnpkg/plugin-typescript"
4-
51
yarnPath: .yarn/releases/yarn-berry.cjs
62
nodeLinker: node-modules

packages/next/tsconfig.json

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"extends": "../../tsconfig.base.json",
3+
"compilerOptions": {
4+
"rootDir": "./src",
5+
"outDir": "./dist"
6+
},
7+
"references": [
8+
{ "path": "../rehype-estree" },
9+
{ "path": "../reorg-rehype" },
10+
{ "path": "../estree-jsx" },
11+
{ "path": "../loader" }
12+
],
13+
"include": ["./src"]
14+
}

0 commit comments

Comments
 (0)