-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
35 lines (24 loc) · 967 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
34
35
install:
npm install
help:
npx babel-node -- src/bin/gendiff.js -h
json:
npx babel-node -- src/bin/gendiff.js ./__tests__/__fixtures__/before.json ./__tests__/__fixtures__/after.json
yaml:
npx babel-node -- src/bin/gendiff.js ./__tests__/__fixtures__/before.yaml ./__tests__/__fixtures__/after.yaml
ini:
npx babel-node -- src/bin/gendiff.js ./__tests__/__fixtures__/before.ini ./__tests__/__fixtures__/after.ini
jsonNested:
npx babel-node -- src/bin/gendiff.js ./__tests__/__fixtures__/beforeNested.json ./__tests__/__fixtures__/afterNested.json
jsonNestedFormat:
npx babel-node -- src/bin/gendiff.js --format plain ./__tests__/__fixtures__/beforeNested.json ./__tests__/__fixtures__/afterNested.json
jsonNestedFormatJson:
npx babel-node -- src/bin/gendiff.js --format json ./__tests__/__fixtures__/beforeNested.json ./__tests__/__fixtures__/afterNested.json
publish:
npm publish
lint:
npx eslint .
test:
npm test
format:
npx prettier --write .