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