build(striker-ui): re-include all usable source files in release tarball
This commit is contained in:
parent
f8b8a6186e
commit
444a901f53
@ -11,10 +11,53 @@ outindexfile = index.html
|
|||||||
outjsmodulesdir = _next
|
outjsmodulesdir = _next
|
||||||
outimagesdir = pngs
|
outimagesdir = pngs
|
||||||
|
|
||||||
# The build output directory listed under EXTRA_DIST contains the files to be
|
# The build output directory listed under EXTRA_DIST contains the files to
|
||||||
# installed; there is no build process required.
|
# include in the release/source tarball.
|
||||||
#
|
#
|
||||||
EXTRA_DIST = $(nextoutdir)
|
# It is recommended to use the following command to regenerate the file list
|
||||||
|
# as files get added/removed:
|
||||||
|
#
|
||||||
|
# find . \
|
||||||
|
# -mindepth 1 -maxdepth 1 \
|
||||||
|
# -not \( -name node_modules -prune \) \
|
||||||
|
# -not \( -name *git* -prune \) \
|
||||||
|
# -not \( -name *husky* -prune \) \
|
||||||
|
# -not \( -name public -prune \) \
|
||||||
|
# -not \( -name *[Mm]ake* -prune \) \
|
||||||
|
# | sed -E 's@^./(.+)$@\1 \\@'
|
||||||
|
#
|
||||||
|
# The find command:
|
||||||
|
# * ignores ./node_modules directory,
|
||||||
|
# * ignores git related files,
|
||||||
|
# * ignores husky related files
|
||||||
|
# * ignores ./public directory
|
||||||
|
# * ignores make related files, and
|
||||||
|
# * removes leading "./" and append "\"
|
||||||
|
#
|
||||||
|
# Note: This only works when we want to include all files within the listed
|
||||||
|
# subdirectories. It is recommended to run a similar find command on a
|
||||||
|
# subdirectory to skip undesired files in the subdirectory.
|
||||||
|
#
|
||||||
|
EXTRA_DIST = \
|
||||||
|
$(nextoutdir) \
|
||||||
|
next.config.js \
|
||||||
|
next-env.d.ts \
|
||||||
|
tsconfig.json \
|
||||||
|
theme \
|
||||||
|
styles \
|
||||||
|
.lintstagedrc.json \
|
||||||
|
README.md \
|
||||||
|
package.json \
|
||||||
|
lib \
|
||||||
|
.prettierrc.json \
|
||||||
|
types \
|
||||||
|
components \
|
||||||
|
pages \
|
||||||
|
.eslintrc.json \
|
||||||
|
commitlint.config.js \
|
||||||
|
.eslintignore \
|
||||||
|
.env \
|
||||||
|
package-lock.json
|
||||||
|
|
||||||
# Blank target; the build output directory should be usable as-is.
|
# Blank target; the build output directory should be usable as-is.
|
||||||
$(nextoutdir): ;
|
$(nextoutdir): ;
|
||||||
|
Loading…
Reference in New Issue
Block a user