For complete list of changes since 15.x, please see https://github.com/nodejs/node/blob/master/doc/changelogs/CHANGELOG_V16.md#16.0.0 - Import staging 16.x OBS-URL: https://build.opensuse.org/package/show/devel:languages:nodejs/nodejs16?expand=0&rev=1
16 lines
292 B
Bash
16 lines
292 B
Bash
#!/bin/bash
|
|
|
|
#
|
|
# Fetch npm module tarball that is required to run unit tests
|
|
# which are not provided by upstream tarball
|
|
#
|
|
# This is only needed for NodeJS 10.x
|
|
#
|
|
set -e
|
|
|
|
tar xf node-git.*.tar
|
|
cd node-git.*/tools/doc
|
|
npm i
|
|
cd ../..
|
|
exec tar Jcf ../node_modules.tar.xz tools/doc/node_modules
|