update gitignore

This commit is contained in:
Florian Dold 2017-05-27 18:05:10 +02:00
parent 5f466137ad
commit 67a5051321
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B
2 changed files with 21 additions and 22 deletions

23
.gitignore vendored
View File

@ -1,26 +1,7 @@
src/**/*.js.map
src/**/*.js
!src/vendor/*.js
!src/emscripten/taler-emscripten-lib.js
testlib/talertest.js
testlib/talertest.js.map
build/
.idea/
taler-wallet-*.tar.gz
taler-wallet-*.directive
taler-wallet-*.directive.asc
taler-wallet-*.sig
build/
dist/
# Even though node_modules are tracked in git,
# per default we don't want them to show up in git status
node_modules
coverage/
coverage-*.json
dist/

View File

@ -5,35 +5,53 @@ gulp = node_modules/gulp/bin/gulp.js
tsc = node_modules/typescript/bin/tsc
pogen = node_modules/pogen/pogen.js
typedoc = node_modules/typedoc/bin/typedoc
ava = node_modules/ava/cli.js
nyc = node_modules/nyc/bin/nyc.js
.PHONY: src/i18n/strings.ts yarn-install
.PHONY: package-stable
package-stable: i18n
$(gulp) package-stable
.PHONY: package-unstable
package-unstable: i18n
$(gulp) package-unstable
.PHONY: tsc
tsc: tsconfig.json yarn-install
$(tsc)
.PHONY: yarn-install
yarn-install:
yarn install
tsconfig.json: gulpfile.js yarn-install
$(gulp) tsconfig
.PHONY: dist
dist:
$(gulp) srcdist
# make documentation from docstrings
.PHONY: typedoc
typedoc:
$(typedoc) --out build/typedoc --readme README
.PHONY: clean
clean:
rm -rf build/
.PHONY: check
check: tsc yarn-install
$(ava) 'build/**/*-test.js'
.PHONY: coverage
coverage: tsc yarn-install
$(nyc) $(ava) 'build/**/*-test.js'
.PHONY: yarn-install
i18n: yarn-install
# extract translatable strings
find $(src) \( -name '*.ts' -or -name '*.tsx' \) ! -name '*.d.ts' \