build(striker-ui): add files to include in tarball for building

main
Tsu-ba-me 4 years ago
parent 2bfcb09672
commit e0c5c3bed2
  1. 102
      striker-ui/Makefile.am

@ -1,6 +1,106 @@
MAINTAINERCLEANFILES = Makefile.in
htmldir = $(localstatedir)/www/html
# The files listed under EXTRA_DIST is only used for building, they should not
# be included in the installation process.
#
# It is recommended to use the following command to regenerate the file list
# as files get added/removed:
#
# find . \
# -not \( -name node_modules -prune \) \ # Ignore ./node_modules directory
# -not \( -name *git* -prune \) \ # Ignore git related files
# -not \( -name public -prune \) \ # Ignore ./public directory
# -not \( -name *[Mm]ake* -prune \) \ # Ignore make related files
# -not \( -name *.md -prune \) \ # Ignore all markdown files
# -type f \ # Only print file paths
# | sed -E 's@^./(.+)$@\1 \\@' # Remove leading "./" and append "\"
#
EXTRA_DIST = \
next.config.js \
next-env.d.ts \
tsconfig.json \
theme/index.ts \
styles/globals.css \
.lintstagedrc.json \
.husky/pre-commit \
.husky/commit-msg \
.husky/_/husky.sh \
env.development \
package.json \
lib/extended_date/ExtendedDate.ts \
lib/fetchers/putJSON.ts \
lib/fetchers/fetchJSON.ts \
lib/fetchers/periodicFetch.ts \
lib/sanitizers/hostsSanitizer.ts \
lib/consts/ICONS.ts \
lib/consts/DEFAULT_THEME.ts \
lib/consts/SERVERS.ts \
lib/consts/ANVILS.ts \
lib/consts/API_BASE_URL.ts \
lib/consts/IS_DEV_ENV.ts \
lib/consts/NODES.ts \
.prettierrc.json \
types/AnvilServers.d.ts \
types/GetAllAnvilResponse.d.ts \
types/AnvilMemory.d.ts \
types/FetchResponse.d.ts \
types/AnvilSharedStorage.d.ts \
types/AnvilNetwork.d.ts \
types/AnvilTypes.d.ts \
types/GetResponse.d.ts \
types/AnvilNodeStatus.d.ts \
types/AnvilList.d.ts \
types/AnvilCPU.d.ts \
types/GetOneAnvilResponse.d.ts \
types/AnvilSet.d.ts \
types/AnvilStatus.d.ts \
types/AnvilReplicatedStorage.d.ts \
types/AnvilFileSystems.d.ts \
types/NodeSet.d.ts \
components/Memory.tsx \
components/Decorator.tsx \
components/Hosts/index.tsx \
components/Hosts/AnvilHost.tsx \
components/Spinner.tsx \
components/AnvilDrawer.tsx \
components/Text/HeaderText.tsx \
components/Text/index.tsx \
components/Text/BodyText.tsx \
components/FileSystem/index.tsx \
components/FileSystem/FileSystemsHost.tsx \
components/FileSystem/FileSystems.tsx \
components/Anvils/index.tsx \
components/Anvils/sortAnvils.ts \
components/Anvils/Anvil.tsx \
components/Anvils/AnvilList.tsx \
components/Anvils/SelectedAnvil.tsx \
components/Panels/index.tsx \
components/Panels/InnerPanel.tsx \
components/Panels/PanelHeader.tsx \
components/Panels/Panel.tsx \
components/Servers.tsx \
components/Storage.tsx \
components/AnvilContext.tsx \
components/SharedStorage/SharedStorage.tsx \
components/SharedStorage/index.tsx \
components/SharedStorage/SharedStorageHost.tsx \
components/Header.tsx \
components/Network/index.tsx \
components/Network/Network.tsx \
components/Network/processNetwork.ts \
components/CPU.tsx \
components/Bars/index.tsx \
components/Bars/ProgressBar.tsx \
components/Bars/AllocationBar.tsx \
pages/index.tsx \
pages/_app.tsx \
pages/_document.tsx \
.eslintrc.json \
commitlint.config.js \
.eslintignore \
package-lock.json
htmldir = $(localstatedir)/www/html
build:
echo "Install node modules (dependencies) prior to building."

Loading…
Cancel
Save