Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

root: upgraded Angular workspace to be static site generator #356

Merged
merged 1 commit into from
Dec 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Angular/.ci/build_unix-any.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/bin/sh
# Copyright 2023 (Holloway) Chew, Kean Ho <[email protected]>
#
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at:
Expand Down
1 change: 0 additions & 1 deletion Angular/.ci/build_windows-any.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Copyright 2023 (Holloway) Chew, Kean Ho <[email protected]>
#
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy
# of the License at:
Expand Down
1 change: 0 additions & 1 deletion Angular/.ci/clean_unix-any.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/bin/sh
# Copyright 2024 (Holloway) Chew, Kean Ho <[email protected]>
#
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at:
Expand Down
1 change: 0 additions & 1 deletion Angular/.ci/clean_windows-any.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Copyright 2024 (Holloway) Chew, Kean Ho <[email protected]>
#
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy
# of the License at:
Expand Down
1 change: 0 additions & 1 deletion Angular/.ci/prepare_unix-any.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/bin/sh
# Copyright 2023 (Holloway) Chew, Kean Ho <[email protected]>
#
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at:
Expand Down
1 change: 0 additions & 1 deletion Angular/.ci/prepare_windows-any.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Copyright 2023 (Holloway) Chew, Kean Ho <[email protected]>
#
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy
# of the License at:
Expand Down
18 changes: 15 additions & 3 deletions Angular/.ci/test_unix-any.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,25 @@ if [ $(OS_Is_Run_Simulated) -eq 0 ]; then
I18N_Simulate_Testing
return 0
else
___browser="$(type -p google-chrome)"
if [ $(STRINGS_Is_Empty "$___browser") -eq 0 ]; then
___old_IFS="$IFS"
while IFS="" read -r ___line || [ -n "$___line" ]; do
___browser="$(type -p chromium)"
if [ ! -z "$___browser" ]; then
break
fi
done << EOF
chromium
google-chrome
brave-browser
EOF
IFS="$___old_IFS" && unset ___old_IFS ___line

if [ "$___browser" = "" ]; then
I18N_Run_Failed
return 1
fi

CHROME_BIN="${___browser}" ./test.sh.ps1
CHROME_BIN="$___browser" ./test.sh.ps1
if [ $? -ne 0 ]; then
I18N_Run_Failed
return 1
Expand Down
40 changes: 40 additions & 0 deletions Angular/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
################################################################################
# Project-Specific and User-Defined Files & Directories #
# (1) Specify your project specific files and directories here. You should #
# only touch this section. #
################################################################################




################################################################################
# AutomataCI - Angular #
# (1) These are auto-generated asset files. Leave them as it is in order to #
# maintain good and proper performance. #
################################################################################
assets/.nojekyll
assets/CNAME
assets/browserconfig.xml
assets/manifest.webmanifest
assets/robots.txt
assets/sitemap.xml
assets/sitemaps/




################################################################################
# Angular & Node #
# (1) These are Angular and Node disposable files. Leave them as it is in #
# order to maintain good and proper performance. #
################################################################################
out-tsc
bazel-out
cache/
coverage/
dist/
.sass-cache/
connect.lock
libpeerconnection.log
testem.log
typings
Loading
Loading