bundlewrap/bundles/nodejs/metadata.py
Franzi 78c553faf9
All checks were successful
bundlewrap/pipeline/head This commit looks good
bundles/nodejs: update to 14.x
2020-10-24 17:20:50 +02:00

22 lines
550 B
Python

defaults = {
'apt': {
'repos': {
'yarn': {
'items': [
'deb https://dl.yarnpkg.com/{os}/ stable main',
],
},
'node': {
'items': [
'deb https://deb.nodesource.com/node_14.x {os_release} main',
'deb-src https://deb.nodesource.com/node_14.x {os_release} main',
],
},
},
'packages': {
'nodejs': {},
'yarn': {},
},
},
}