mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 07:22:23 -04:00
7 lines
217 B
Bash
Executable file
7 lines
217 B
Bash
Executable file
#!/bin/bash
|
|
# Update JS dependencies and dump runtime licenses to licenses.json
|
|
|
|
set -e
|
|
|
|
bazel run @nodejs//:yarn upgrade
|
|
./node_modules/.bin/license-checker --production --json --excludePackages anki > licenses.json
|