Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile - github.com/nextcloud/files_texteditor.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 490c87ebd079a3e3bd29b16dbdf8518fc5853722 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
all: build/editor.js

sources=$(wildcard js/*.js) $(wildcard js/*/*.js) babel.config.js webpack.config.js

.PHONY: watch
watch: node_modules
	node_modules/.bin/webpack --watch

clean:
	rm -rf $(build_dir) node_modules

node_modules: package.json
	npm install

build/editor.js: $(sources) node_modules
	NODE_ENV=production node_modules/.bin/webpack