Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
coopwire-hypothesis
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
孙灵跃 Leon Sun
coopwire-hypothesis
Commits
34be72d3
Commit
34be72d3
authored
Jun 28, 2016
by
Nick Stenning
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a stripped-down Makefile and a .gitignore
parent
d29cbc0b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
0 deletions
+30
-0
.gitignore
.gitignore
+2
-0
Makefile
Makefile
+28
-0
No files found.
.gitignore
0 → 100644
View file @
34be72d3
build/
node_modules/
Makefile
0 → 100644
View file @
34be72d3
NPM_BIN
:=
$(
shell
npm bin
)
.PHONY
:
default
default
:
all
.PHONY
:
all
all
:
build/manifest.json
## Remove build artifacts
.PHONY
:
clean
clean
:
rm
-f
node_modules/.uptodate
rm
-rf
build
## Run test suite
.PHONY
:
test
test
:
node_modules/.uptodate
$(NPM_BIN)
/gulp test-app
################################################################################
build/manifest.json
:
node_modules/.uptodate
$(NPM_BIN)
/gulp build-app
node_modules/.uptodate
:
package.json
@
echo
installing javascript dependencies
@
$(NPM_BIN)
/check-dependencies 2>/dev/null
||
npm
install
@
touch
$@
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