File tree 5 files changed +2709
-74
lines changed
5 files changed +2709
-74
lines changed Original file line number Diff line number Diff line change 107
107
.DS_Store
108
108
109
109
110
+ # turbo
111
+ .turbo
112
+
110
113
# ------- docs related -------
111
114
# # Learn more at scripts/docs-copy/flags-api-docs.js
112
115
# flags api docs
Original file line number Diff line number Diff line change
1
+ {
2
+ "useWorkspaces" : true ,
3
+ "packages" : [
4
+ " packages/*"
5
+ ],
6
+ "command" : {
7
+ "version" : {
8
+ "exact" : true
9
+ },
10
+ "publish" : {
11
+ "npmClient" : " npm" ,
12
+ "allowBranch" : [
13
+ " canary"
14
+ ],
15
+ "registry" : " https://registry.npmjs.org/"
16
+ }
17
+ },
18
+ "version" : " 0.0.0"
19
+ }
Original file line number Diff line number Diff line change 6
6
"private" : true ,
7
7
"scripts" : {
8
8
"checkout:all" : " git submodule update --init --recursive" ,
9
- "editor" : " yarn workspace editor dev"
9
+ "editor" : " turbo run editor#dev" ,
10
+ "build" : " turbo run build" ,
11
+ "lerna" : " lerna"
10
12
},
11
13
"workspaces" : [
12
14
" editor" ,
18
20
"@design-sdk/figma-node" : " 0.0.25" ,
19
21
"@reflect-ui/core" : " 0.0.8" ,
20
22
"csstype" : " 3.1.0"
23
+ },
24
+ "devDependencies" : {
25
+ "lerna" : " ^4.0.0" ,
26
+ "turbo" : " ^1.4.2"
21
27
}
22
28
}
Original file line number Diff line number Diff line change
1
+ {
2
+ "$schema" : " https://turborepo.org/schema.json" ,
3
+ "baseBranch" : " origin/main" ,
4
+ "pipeline" : {
5
+ "editor#dev" : {
6
+ "dependsOn" : [
7
+ " ^build"
8
+ ],
9
+ "outputs" : [
10
+ " .next"
11
+ ]
12
+ },
13
+ "build" : {
14
+ "dependsOn" : [
15
+ " ^build"
16
+ ],
17
+ "outputs" : [
18
+ " .next/**"
19
+ ]
20
+ }
21
+ }
22
+ }
You can’t perform that action at this time.
0 commit comments