tangled
alpha
login
or
join now
seth.computer
/
dotfiles
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
pnpm, brewfile lock update
seth.computer
2 years ago
dfdb4400
71399160
verified
This commit was signed with the committer's
known signature
.
seth.computer
SSH Key Fingerprint:
SHA256:l+TmfElcKWTGSvrmVQkRAqucAII4w28uPbCCkXB+x7o=
+9
-9
2 changed files
expand all
collapse all
unified
split
Brewfile.lock.json
playbooks
roles
programs
tasks
main.yml
+3
-3
Brewfile.lock.json
···
2569
2569
}
2570
2570
},
2571
2571
"loom": {
2572
2572
-
"version": "0.170.4",
2572
2572
+
"version": "0.171.3",
2573
2573
"options": {
2574
2574
"full_name": "loom"
2575
2575
}
···
2587
2587
}
2588
2588
},
2589
2589
"slack": {
2590
2590
-
"version": "4.33.90",
2590
2590
+
"version": "4.34.115",
2591
2591
"options": {
2592
2592
"full_name": "slack"
2593
2593
}
···
2617
2617
}
2618
2618
},
2619
2619
"zoom": {
2620
2620
-
"version": "5.15.11.22019",
2620
2620
+
"version": "5.15.12.22445",
2621
2621
"options": {
2622
2622
"full_name": "zoom"
2623
2623
}
+6
-6
playbooks/roles/programs/tasks/main.yml
···
12
12
ansible.builtin.shell: "fnm install latest && fnm default latest"
13
13
when: node_check.stderr.find('not available') != -1
14
14
15
15
-
- name: check-yarn
16
16
-
ansible.builtin.shell: "yarn -v"
15
15
+
- name: check-pnpm
16
16
+
ansible.builtin.shell: "pnpm -v"
17
17
ignore_errors: true
18
18
-
register: yarn_check
18
18
+
register: pnpm_check
19
19
20
20
-
- name: install-yarn
21
21
-
ansible.builtin.shell: "npm i -g yarn"
22
22
-
when: yarn_check.stderr.find('not available') != -1
20
20
+
- name: install-pnpm
21
21
+
ansible.builtin.shell: "npm i -g pnpm"
22
22
+
when: pnpm_check.stderr.find('not available') != -1