-
Notifications
You must be signed in to change notification settings - Fork 45
/
Makefile
33 lines (27 loc) · 955 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# This Makefile just runs npm scripts defined in package.json, both so that
# people can use `npm run ...` if they prefer, and because npm conveniently
# expands $PATH for us to find and run tools we install (e.g. gulp).
MIN_NODE_VERSION = 10
NPM_ABSENT_MSG = "\n Please install Node/NPM (see https://nodejs.org) \n"
NODE_VERSION_MSG = "\n Please install/activate Node version ≥ v${MIN_NODE_VERSION} \n"
.PHONY: all
all: check_requirements
###
### Fetching and installing dependencies.
###
npm install
###
### Transpiling, bundling & minifying the extension source code.
###
npm run build-prod
###
### Packaging it for the browsers.
###
npm run package
.PHONY: check_requirements
check_requirements:
###
### Checking availability of Node/NPM.
###
command -v npm >/dev/null || { echo ${NPM_ABSENT_MSG}; exit 1; }
test `node -p "process.versions.node.split('.')[0]"` -ge ${MIN_NODE_VERSION} || { echo ${NODE_VERSION_MSG}; exit 1; }