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: 62b1f9259b8bfdb6efb9b2da2fefc53914678e1d (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) .babelrc 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