Skip to content

Commit ffc7fe8

Browse files
committed
chore: remove gldt_landing_page traces
1 parent dbfdded commit ffc7fe8

7 files changed

+2
-24
lines changed

Diff for: .gitlab-ci.yml

-3
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,6 @@ include:
9595
inputs:
9696
src-folder: gldt_swap
9797
# Frontend builds
98-
- local: scripts/ci-cd/.frontend_builds.yml
99-
inputs:
100-
src-folder: gldt_landing_page
10198
- local: scripts/ci-cd/.frontend_builds.yml
10299
inputs:
103100
src-folder: gld_landing_page

Diff for: README.md

-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ To launch a **front-end only** development server, with [HMR](https://webpack.js
7676

7777
```sh
7878
npm run dev:gldt_swap_app # For the GLDT swap application frontend
79-
npm run dev:gldt_landing_page # For the GLDT main landing page
8079
```
8180

8281
The frontend development server will be available at `http://localhost:3000`.

Diff for: dfx.json

-11
Original file line numberDiff line numberDiff line change
@@ -86,17 +86,6 @@
8686
"source": ["client/gld_dashboard/dist"],
8787
"type": "assets"
8888
},
89-
"gldt_landing_page": {
90-
"build": ["npm run postinstall", "npm run build:gldt_landing_page"],
91-
"declarations": {
92-
"bindings": [],
93-
"env_override": null,
94-
"output": null
95-
},
96-
"frontend": {},
97-
"source": ["client/gldt_landing_page/dist"],
98-
"type": "assets"
99-
},
10089
"gld_landing_page": {
10190
"build": ["npm run postinstall", "npm run build:gld_landing_page"],
10291
"declarations": {

Diff for: package.json

+2-6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"author": "GoldDAO",
55
"workspaces": [
66
"client/gldt_swap_app",
7-
"client/gldt_landing_page",
87
"client/gld_dashboard",
98
"client/gld_landing_page"
109
],
@@ -13,13 +12,11 @@
1312
"private": true,
1413
"scripts": {
1514
"dev:gldt_swap_app": "npm run --workspace gldt_swap_app develop",
16-
"dev:gldt_landing_page": "npm run --workspace gldt_landing_page develop",
1715
"dev:gld_landing_page": "npm run --workspace gld_landing_page develop",
1816
"dev:gld_dashboard": "npm run --workspace gld_dashboard develop",
1917
"build": "npm run build:backdid && npm run build:back && npm run build:frontends",
20-
"build:frontends": "npm run build:gldt_swap_app && npm run build:gldt_landing_page && npm run build:gld_dashboard",
18+
"build:frontends": "npm run build:gldt_swap_app && npm run build:gld_dashboard",
2119
"build:gldt_swap_app": "npm run --workspace gldt_swap_app build",
22-
"build:gldt_landing_page": "npm run --workspace gldt_landing_page build",
2320
"build:gld_landing_page": "npm run --workspace gld_landing_page build",
2421
"build:gld_dashboard": "npm run --workspace gld_dashboard build",
2522
"build:back": "scripts/build_canister.sh gldt_swap && scripts/build_canister.sh icp_neuron && scripts/build_canister.sh sns_rewards",
@@ -28,9 +25,8 @@
2825
"build:declarations": "dfx generate && scripts/refactor_nft_declarations.sh",
2926
"lint": "npm run lint:back && npm run lint:frontends",
3027
"lint:back": "cargo clippy",
31-
"lint:frontends": "npm run lint:gldt_swap_app && npm run lint:gldt_landing_page && npm run lint:gld_landing_page && npm run lint:gld_dashboard",
28+
"lint:frontends": "npm run lint:gldt_swap_app && npm run lint:gld_landing_page && npm run lint:gld_dashboard",
3229
"lint:gldt_swap_app": "npm run --workspace gldt_swap_app lint",
33-
"lint:gldt_landing_page": "npm run --workspace gldt_landing_page lint",
3430
"lint:gld_landing_page": "npm run --workspace gld_landing_page lint",
3531
"lint:gld_dashboard": "npm run --workspace gld_dashboard lint",
3632
"deploy:gld_dashboard:staging": "ENV=staging dfx deploy gld_dashboard --network=staging --mode reinstall",

Diff for: scripts/ci-cd/.frontend_builds.yml

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ spec:
44
description: The frontend project folder name. Must be located in the /client/ folder
55
options:
66
[
7-
"gldt_landing_page",
87
"gld_dashboard",
98
"gldt_swap_app",
109
"gld_landing_page",

Diff for: scripts/ci-cd/.frontend_deploys.yml

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ spec:
44
description: The NextJS project folder name. Must be located in the /client/ folder
55
options:
66
[
7-
"gldt_landing_page",
87
"gld_dashboard",
98
"gldt_swap_app",
109
"gld_landing_page",

Diff for: scripts/ci-cd/.frontend_linter.yml

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ spec:
55
options:
66
[
77
"gldt_swap_app",
8-
"gldt_landing_page",
98
"gld_dashboard",
109
"gld_landing_page",
1110
]

0 commit comments

Comments
 (0)