mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
* add support for idmapped mounts to start-sdk * misc fixes * misc fixes * add default to textarea * fix iptables masquerade rule * fix textarea types * more fixes * better logging for rsync * fix tty size * fix wg conf generation for android * disable file mounts on dependencies * mostly there, some styling issues (#3069) * mostly there, some styling issues * fix: address comments (#3070) * fix: address comments * fix: fix * show SSL for any address with secure protocol and ssl added * better sorting and messaging --------- Co-authored-by: Alex Inkin <alexander@inkin.ru> * fixes for nextcloud * allow sidebar navigation during service state traansitions * wip: x-forwarded headers * implement x-forwarded-for proxy * lowercase domain names and fix warning popover bug * fix http2 websockets * fix websocket retry behavior * add arch filters to s9pk pack * use docker for start-cli install * add version range to package signer on registry * fix rcs < 0 * fix user information parsing * refactor service interface getters * disable idmaps * build fixes * update docker login action * streamline build * add start-cli workflow * rename * riscv64gc * fix ui packing * no default features on cli * make cli depend on GIT_HASH * more build fixes * more build fixes * interpolate arch within dockerfile * fix tests * add launch ui to service page plus other small improvements (#3075) * add launch ui to service page plus other small improvements * revert translation disable * add spinner to service list if service is health and loading * chore: some visual tune up * chore: update Taiga UI --------- Co-authored-by: waterplea <alexander@inkin.ru> * fix backups * feat: use arm hosted runners and don't fail when apt package does not exist (#3076) --------- Co-authored-by: Matt Hill <mattnine@protonmail.com> Co-authored-by: Shadowy Super Coder <musashidisciple@proton.me> Co-authored-by: Matt Hill <MattDHill@users.noreply.github.com> Co-authored-by: Alex Inkin <alexander@inkin.ru> Co-authored-by: Remco Ros <remcoros@live.nl>
80 lines
2.2 KiB
Makefile
80 lines
2.2 KiB
Makefile
PACKAGE_TS_FILES := $(shell git ls-files package/lib) package/lib/test/output.ts
|
|
BASE_TS_FILES := $(shell git ls-files base/lib) package/lib/test/output.ts
|
|
version = $(shell git tag --sort=committerdate | tail -1)
|
|
|
|
.PHONY: test base/test package/test clean bundle fmt buildOutput check
|
|
|
|
all: bundle
|
|
|
|
package/test: $(PACKAGE_TS_FILES) package/lib/test/output.ts package/node_modules base/node_modules
|
|
cd package && npm test
|
|
|
|
base/test: $(BASE_TS_FILES) base/node_modules
|
|
cd base && npm test
|
|
|
|
test: base/test package/test
|
|
|
|
clean:
|
|
rm -rf base/node_modules
|
|
rm -rf dist
|
|
rm -rf baseDist
|
|
rm -f package/lib/test/output.ts
|
|
rm -rf package/node_modules
|
|
|
|
package/lib/test/output.ts: package/node_modules package/lib/test/makeOutput.ts package/scripts/oldSpecToBuilder.ts
|
|
cd package && npm run buildOutput
|
|
|
|
bundle: baseDist dist | test fmt
|
|
touch dist
|
|
|
|
base/lib/exver/exver.ts: base/node_modules base/lib/exver/exver.pegjs
|
|
cd base && npm run peggy
|
|
|
|
baseDist: $(PACKAGE_TS_FILES) $(BASE_TS_FILES) base/package.json base/node_modules base/README.md base/LICENSE
|
|
(cd base && npm run tsc)
|
|
rsync -ac base/node_modules baseDist/
|
|
cp base/package.json baseDist/package.json
|
|
cp base/README.md baseDist/README.md
|
|
cp base/LICENSE baseDist/LICENSE
|
|
touch baseDist
|
|
|
|
dist: $(PACKAGE_TS_FILES) $(BASE_TS_FILES) package/package.json package/.npmignore package/node_modules package/README.md package/LICENSE
|
|
(cd package && npm run tsc)
|
|
rsync -ac package/node_modules dist/
|
|
cp package/.npmignore dist/.npmignore
|
|
cp package/package.json dist/package.json
|
|
cp package/README.md dist/README.md
|
|
cp package/LICENSE dist/LICENSE
|
|
touch dist
|
|
|
|
full-bundle: bundle
|
|
|
|
check:
|
|
cd package
|
|
npm run check
|
|
cd ../base
|
|
npm run check
|
|
|
|
fmt: package/node_modules base/node_modules
|
|
npx --prefix base prettier "**/*.ts" --write
|
|
|
|
package/package-lock.json: package/package.json
|
|
cd package && npm i
|
|
|
|
base/package-lock.json: base/package.json
|
|
cd base && npm i
|
|
|
|
package/node_modules: package/package-lock.json
|
|
cd package && npm ci
|
|
|
|
base/node_modules: base/package-lock.json
|
|
cd base && npm ci
|
|
|
|
node_modules: package/node_modules base/node_modules
|
|
|
|
publish: bundle package/package.json package/README.md package/LICENSE
|
|
cd dist && npm publish --access=public
|
|
|
|
link: bundle
|
|
cd dist && npm link
|