mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
8 lines
257 B
Bash
Executable file
8 lines
257 B
Bash
Executable file
#!/bin/bash
|
|
# Dump runtime licenses to licenses.json
|
|
|
|
set -e
|
|
|
|
cd .. && bazel run ts:node -- ./node_modules/.bin/license-checker-rseidelsohn --production --json \
|
|
--excludePackages anki --relativeLicensePath \
|
|
--relativeModulePath > ts/licenses.json
|