bundles/nodejs: everything changed, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
This commit is contained in:
parent
350c436e4d
commit
55a3e6675f
2 changed files with 22 additions and 44 deletions
|
@ -1,9 +0,0 @@
|
||||||
actions = {
|
|
||||||
'nodejs_install_yarn': {
|
|
||||||
'command': 'npm install -g yarn@latest',
|
|
||||||
'unless': 'test -e /usr/lib/node_modules/yarn',
|
|
||||||
'after': {
|
|
||||||
'pkg_apt:',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
|
@ -1,54 +1,41 @@
|
||||||
defaults = {
|
defaults = {
|
||||||
'apt': {
|
'apt': {
|
||||||
'additional_update_commands': {
|
'additional_update_commands': {
|
||||||
# update npm to latest version
|
# update npm and yarn to latest version
|
||||||
|
'npm install -g npm@latest',
|
||||||
'npm install -g yarn@latest',
|
'npm install -g yarn@latest',
|
||||||
},
|
},
|
||||||
'packages': {
|
'packages': {
|
||||||
'nodejs': {},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
'nodejs': {
|
'nodejs': {
|
||||||
'version': 18,
|
'triggers': {
|
||||||
|
'action:apt_execute_update_commands',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
'npm': {
|
||||||
|
'installed': False,
|
||||||
|
'triggers': {
|
||||||
|
'action:apt_execute_update_commands',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
}
|
|
||||||
|
|
||||||
VERSIONS_SHIPPED_BY_DEBIAN = {
|
|
||||||
10: 10,
|
|
||||||
11: 12,
|
|
||||||
12: 18,
|
|
||||||
13: 18,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@metadata_reactor.provides(
|
@metadata_reactor.provides(
|
||||||
'apt/repos/nodejs/items',
|
'apt/repos/nodejs/items',
|
||||||
'apt/additional_update_commands',
|
|
||||||
)
|
)
|
||||||
def nodejs_from_version(metadata):
|
def nodejs_from_version(metadata):
|
||||||
version = metadata.get('nodejs/version')
|
version = metadata.get('nodejs/version')
|
||||||
|
|
||||||
if version != VERSIONS_SHIPPED_BY_DEBIAN[node.os_version[0]]:
|
|
||||||
return {
|
return {
|
||||||
'apt': {
|
'apt': {
|
||||||
'additional_update_commands': {
|
|
||||||
# update npm to latest version
|
|
||||||
'npm install -g npm@latest',
|
|
||||||
},
|
|
||||||
'repos': {
|
'repos': {
|
||||||
'nodejs': {
|
'nodejs': {
|
||||||
'items': {
|
'items': {
|
||||||
f'deb https://deb.nodesource.com/node_{version}.x {{os_release}} main',
|
f'deb https://deb.nodesource.com/node_{version}.x nodistro main',
|
||||||
f'deb-src https://deb.nodesource.com/node_{version}.x {{os_release}} main',
|
f'deb-src https://deb.nodesource.com/node_{version}.x nodistro main',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
else:
|
|
||||||
return {
|
|
||||||
'apt': {
|
|
||||||
'packages': {
|
|
||||||
'npm': {},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue