tangled
alpha
login
or
join now
stream.place
/
streamplace
74
fork
atom
Live video on the AT Protocol
74
fork
atom
overview
issues
1
pulls
pipelines
build: add Makefile
Eli Mallon
2 years ago
ed4ae3d6
a2d66618
+9
-2
3 changed files
expand all
collapse all
unified
split
.npmrc
Makefile
packages
app
package.json
+1
.npmrc
···
1
1
+
node-linker=hoisted
+5
Makefile
···
1
1
+
2
2
+
.phony: default
3
3
+
default:
4
4
+
pnpm install
5
5
+
pnpm run -r build
+3
-2
packages/app/package.json
···
9
9
"ios": "expo start --ios",
10
10
"web": "expo start --web",
11
11
"test": "jest --watchAll",
12
12
-
"lint": "expo lint"
12
12
+
"lint": "expo lint",
13
13
+
"build": "expo export -p web"
13
14
},
14
15
"jest": {
15
16
"preset": "jest-expo"
···
48
49
"typescript": "~5.3.3"
49
50
},
50
51
"private": true
51
51
-
}
52
52
+
}