Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
scratch-www
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
scratch-www
Commits
82fe07ed
Commit
82fe07ed
authored
Nov 19, 2015
by
Ray Schamp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add version.txt file to build directory on build
parent
fafff504
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
Makefile
Makefile
+9
-2
No files found.
Makefile
View file @
82fe07ed
...
...
@@ -4,6 +4,9 @@ SASSLINT=./node_modules/.bin/sass-lint -v
TAP
=
./node_modules/.bin/tap
WATCH
=
./node_modules/.bin/watch
WEBPACK
=
./node_modules/.bin/webpack
GIT_VERSION
=
$(
shell
git rev-parse
--verify
--short
=
5 HEAD 2> /dev/null
)
GIT_VERSION
?=
$(WWW_VERSION)
GIT_MESSAGE
=
$(
shell
git log
-1
--pretty
=
%s 2> /dev/null
)
# ------------------------------------
...
...
@@ -11,6 +14,7 @@ build:
@
make clean
@
make translations
@
make webpack
@
make version
clean
:
rm
-rf
./build
...
...
@@ -27,12 +31,15 @@ else
@
make build
git archive
-o
deploy.zip HEAD
zip
-rv
deploy.zip build
eb deploy
-l
$
$
(
git rev-parse
--verify
--short
=
5 HEAD
)
-m
"
$$
(git log -1 --pretty=%s
)"
eb deploy
-l
$
(GIT_VERSION)
-m
"
$(GIT_MESSAGE
)
"
endif
translations
:
./lib/bin/build-locales locales/translations.json
version
:
echo
$(GIT_VERSION)
>
./build/version.txt
webpack
:
$(WEBPACK)
--bail
...
...
@@ -75,4 +82,4 @@ integration:
# ------------------------------------
.PHONY
:
build clean deploy static translations webpack watch stop start test lint
.PHONY
:
build clean deploy static translations
version
webpack watch stop start test lint
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment