2020-12-31 03:20:51 +01:00
|
|
|
#!/bin/bash
|
|
|
|
# Dump runtime licenses to licenses.json
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2021-12-03 11:09:08 +01:00
|
|
|
cd .. && bazel run ts:node -- ./node_modules/.bin/license-checker-rseidelsohn --production --json \
|
2020-12-31 03:20:51 +01:00
|
|
|
--excludePackages anki --relativeLicensePath \
|
2021-10-07 03:34:00 +02:00
|
|
|
--relativeModulePath > ts/licenses.json
|