46b80ca773
Recommend removing ts/node_modules folder before attempting to build after this update. This moves ts/node_modules into the root of the project to work around https://github.com/ankitects/anki/pull/1405#issuecomment-936213861 Also fixes the sass errors shown when running scripts/svelte-check
9 lines
236 B
Bash
Executable File
9 lines
236 B
Bash
Executable File
#!/bin/bash
|
|
# Dump runtime licenses to licenses.json
|
|
|
|
set -e
|
|
|
|
cd .. && ./node_modules/.bin/license-checker-rseidelsohn --production --json \
|
|
--excludePackages anki --relativeLicensePath \
|
|
--relativeModulePath > ts/licenses.json
|