82f2b76e25
We now use webpack instead of SystemJS, effectively bundling modules into one file (plus commons chunks) for every entry point. This results in a much smaller extension size (almost half). Furthermore we use yarn/npm even for extension run-time dependencies. This relieves us from manually vendoring and building dependencies. It's also easier to understand for new developers familiar with node.
27 lines
398 B
Plaintext
27 lines
398 B
Plaintext
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
|
|
|
|
# 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/
|