update gitignore
This commit is contained in:
parent
5f466137ad
commit
67a5051321
23
.gitignore
vendored
23
.gitignore
vendored
@ -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/
|
.idea/
|
||||||
|
build/
|
||||||
taler-wallet-*.tar.gz
|
dist/
|
||||||
taler-wallet-*.directive
|
|
||||||
taler-wallet-*.directive.asc
|
|
||||||
taler-wallet-*.sig
|
|
||||||
|
|
||||||
# Even though node_modules are tracked in git,
|
# Even though node_modules are tracked in git,
|
||||||
# per default we don't want them to show up in git status
|
# per default we don't want them to show up in git status
|
||||||
node_modules
|
node_modules
|
||||||
|
|
||||||
coverage/
|
|
||||||
coverage-*.json
|
|
||||||
|
|
||||||
dist/
|
|
||||||
|
20
Makefile
20
Makefile
@ -5,35 +5,53 @@ gulp = node_modules/gulp/bin/gulp.js
|
|||||||
tsc = node_modules/typescript/bin/tsc
|
tsc = node_modules/typescript/bin/tsc
|
||||||
pogen = node_modules/pogen/pogen.js
|
pogen = node_modules/pogen/pogen.js
|
||||||
typedoc = node_modules/typedoc/bin/typedoc
|
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
|
package-stable: i18n
|
||||||
$(gulp) package-stable
|
$(gulp) package-stable
|
||||||
|
|
||||||
|
.PHONY: package-unstable
|
||||||
package-unstable: i18n
|
package-unstable: i18n
|
||||||
$(gulp) package-unstable
|
$(gulp) package-unstable
|
||||||
|
|
||||||
|
.PHONY: tsc
|
||||||
tsc: tsconfig.json yarn-install
|
tsc: tsconfig.json yarn-install
|
||||||
$(tsc)
|
$(tsc)
|
||||||
|
|
||||||
|
.PHONY: yarn-install
|
||||||
yarn-install:
|
yarn-install:
|
||||||
yarn install
|
yarn install
|
||||||
|
|
||||||
tsconfig.json: gulpfile.js yarn-install
|
tsconfig.json: gulpfile.js yarn-install
|
||||||
$(gulp) tsconfig
|
$(gulp) tsconfig
|
||||||
|
|
||||||
|
.PHONY: dist
|
||||||
dist:
|
dist:
|
||||||
$(gulp) srcdist
|
$(gulp) srcdist
|
||||||
|
|
||||||
# make documentation from docstrings
|
# make documentation from docstrings
|
||||||
|
.PHONY: typedoc
|
||||||
typedoc:
|
typedoc:
|
||||||
$(typedoc) --out build/typedoc --readme README
|
$(typedoc) --out build/typedoc --readme README
|
||||||
|
|
||||||
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
rm -rf build/
|
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
|
i18n: yarn-install
|
||||||
# extract translatable strings
|
# extract translatable strings
|
||||||
find $(src) \( -name '*.ts' -or -name '*.tsx' \) ! -name '*.d.ts' \
|
find $(src) \( -name '*.ts' -or -name '*.tsx' \) ! -name '*.d.ts' \
|
||||||
|
Loading…
Reference in New Issue
Block a user