Add a simple makefile and some webpack-cli

This commit is contained in:
R. Tyler Croy 2018-08-10 16:15:20 -07:00
parent d59a1e82b4
commit f178b69bf8
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
3 changed files with 24 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
*.sw*
build/
node_modules/
dist/

20
Makefile Normal file
View File

@ -0,0 +1,20 @@
#
#
PATH:=./node_modules/.bin:./tools:$(PATH)
all: build check
build:
webpack-cli
check: build
jest
clean:
rm -rf dist
rm -f src/*.js
.PHONY: all clean check
# vim: set et

3
src/index.ts Normal file
View File

@ -0,0 +1,3 @@
import feathers from '@feathersjs/feathers';
const app = feathers();