Adam Majer
5b4702fb97
* --experimental-default-type flag to flip module defaults * The new flag --experimental-detect-module can be used to automatically run ES modules when their syntax can be detected. * Added flush option in file system functions for fs.writeFile functions * Added experimental WebSocket client * vm: fix V8 compilation cache support for vm.Script. This fixes performance regression since v16.x when support for importModuleDynamically was added to vm.Script For details, see https://github.com/nodejs/node/blob/main/doc/changelogs/CHANGELOG_V20.md#20.10.0 - nodejs20-zlib-1.3.patch: upstreamed, removed - fix_ci_tests.patch, node-gyp-addon-gypi.patch: refreshed - Update to 20.9.0: * No changes, just LTS transition OBS-URL: https://build.opensuse.org/package/show/devel:languages:nodejs/nodejs20?expand=0&rev=50
14 lines
251 B
Bash
14 lines
251 B
Bash
#!/bin/bash
|
|
|
|
#
|
|
# Fetch npm module tarball that is required to run unit tests
|
|
# which are not provided by upstream tarball
|
|
#
|
|
set -e
|
|
|
|
tar Jxf node-v*.tar.xz
|
|
cd node-v*/tools/doc
|
|
npm ci
|
|
cd ../..
|
|
exec tar Jcf ../node_modules.tar.xz tools/doc/node_modules
|