mirror of
https://forge.chapril.org/tykayn/workflow
synced 2025-06-20 01:44:43 +02:00
add backup strategy
This commit is contained in:
parent
1fb5c50757
commit
ed0166db29
16 changed files with 374 additions and 9 deletions
45
automatisation/ansible/node_packages.yml
Normal file
45
automatisation/ansible/node_packages.yml
Normal file
|
@ -0,0 +1,45 @@
|
|||
- name: "vérifier l'existence des paquets NPM pour le développement"
|
||||
hosts: localhost
|
||||
tasks:
|
||||
- name: "Angular CLI"
|
||||
community.general.npm:
|
||||
name: "@angular/cli"
|
||||
global: true
|
||||
# - name: "Vue CLI"
|
||||
# community.general.npm:
|
||||
# name: "@vue/cli"
|
||||
# global: true
|
||||
- name: "Encore"
|
||||
community.general.npm:
|
||||
name: "encore"
|
||||
global: true
|
||||
- name: "node version manager"
|
||||
community.general.npm:
|
||||
name: "nvm"
|
||||
global: true
|
||||
state: absent
|
||||
- name: "cypress test runner"
|
||||
community.general.npm:
|
||||
name: "cypress"
|
||||
global: true
|
||||
- name: "Nuxt cli nuxi"
|
||||
community.general.npm:
|
||||
name: "nuxi"
|
||||
global: true
|
||||
- name: "yarn"
|
||||
community.general.npm:
|
||||
name: "yarn"
|
||||
global: true
|
||||
|
||||
- name: "eslint"
|
||||
community.general.npm:
|
||||
name: "eslint"
|
||||
global: true
|
||||
- name: "nodemon"
|
||||
community.general.npm:
|
||||
name: "nodemon"
|
||||
global: true
|
||||
- name: "serve"
|
||||
community.general.npm:
|
||||
name: "serve"
|
||||
global: true
|
Loading…
Add table
Add a link
Reference in a new issue