|
20 | 20 | "build": "shx rm -rf dist/ && shx mkdir ./dist && run-p test.tsc build.parcel copy.matchers",
|
21 | 21 | "build.docker": "pnpm build && docker build -f ./dev/docker/ubuntu_node.dockerfile -t setup_cpp .",
|
22 | 22 | "build.docker.arch": "pnpm build && docker build -f ./dev/docker/arch_node.dockerfile -t setup_cpp:arch .",
|
| 23 | + "build.docker.fedora": "pnpm build && docker build -f ./dev/docker/fedora_node.dockerfile -t setup_cpp:fedora .", |
23 | 24 | "build.docker.ubuntu": "pnpm build && docker build -f ./dev/docker/ubuntu_node.dockerfile -t setup_cpp:ubuntu .",
|
24 | 25 | "build.parcel": "cross-env NODE_ENV=production parcel build --detailed-report",
|
25 | 26 | "bump": "ncu -u -x execa,numerous && pnpm update",
|
|
32 | 33 | "prepare": "npm run build",
|
33 | 34 | "start.docker": "docker run -t setup_cpp .",
|
34 | 35 | "start.docker.arch": "docker run -t setup_cpp:arch .",
|
| 36 | + "start.docker.fedora": "docker run -t setup_cpp:fedora .", |
35 | 37 | "start.docker.ubuntu": "docker run -t setup_cpp:ubuntu .",
|
36 | 38 | "test": "run-p test.format test.lint test.cspell test.tsc test.unit",
|
37 | 39 | "test.cspell": "cspell lint --no-progress --show-suggestions",
|
38 | 40 | "test.docker.arch": "docker build -f ./dev/docker/arch_node.dockerfile --target base -t setup_cpp:arch-base . && container-structure-test test --image setup_cpp:arch-base --config ./dev/container-tests/arch.yml",
|
| 41 | + "test.docker.fedora": "docker build -f ./dev/docker/fedora_node.dockerfile --target base -t setup_cpp:fedora-base . && container-structure-test test --image setup_cpp:fedora-base --config ./dev/container-tests/fedora.yml", |
39 | 42 | "test.docker.ubuntu": "docker build -f ./dev/docker/ubuntu_node.dockerfile --target base -t setup_cpp:ubuntu-base . && container-structure-test test --image setup_cpp:ubuntu-base --config ./dev/container-tests/ubuntu.yml",
|
40 | 43 | "test.format": "prettier . --check",
|
41 | 44 | "test.lint": "eslint .",
|
|
0 commit comments