Skip to content
This repository was archived by the owner on Aug 13, 2020. It is now read-only.

Commit b717b5d

Browse files
authored
update node version to 13.11.0 (#1215)
We are currently running node 13.11.0 in production so we should also be running it locally.
1 parent da6178b commit b717b5d

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

.mert-example

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ layout:
44
-
55
layout:
66
-
7-
- asdf local ruby 2.6.6; asdf local nodejs 13.0.1; code .; clear
8-
- asdf local ruby 2.6.6; asdf local nodejs 13.0.1; clear; bundle exec rails c
7+
- asdf local ruby 2.6.6; asdf local nodejs 13.11.0; code .; clear
8+
- asdf local ruby 2.6.6; asdf local nodejs 13.11.0; clear; bundle exec rails c
99
-
1010
layout:
1111
-
12-
- asdf local ruby 2.6.6; asdf local nodejs 13.0.1; lsof -t -i tcp:3000 | xargs kill; redis-cli flushall; clear; bundle exec rails s
13-
- asdf local ruby 2.6.6; asdf local nodejs 13.0.1; lsof -t -i tcp:3035 | xargs kill; clear; bundle exec ./bin/webpack-dev-server
12+
- asdf local ruby 2.6.6; asdf local nodejs 13.11.0; lsof -t -i tcp:3000 | xargs kill; redis-cli flushall; clear; bundle exec rails s
13+
- asdf local ruby 2.6.6; asdf local nodejs 13.11.0; lsof -t -i tcp:3035 | xargs kill; clear; bundle exec ./bin/webpack-dev-server
1414
-
1515
layout:
1616
-
17-
- asdf local ruby 2.6.6; asdf local nodejs 13.0.1; redis-cli flushall; clear; bundle exec sidekiq -C config/sidekiq.yml
18-
- asdf local ruby 2.6.6; asdf local nodejs 13.0.1; clear; bundle exec sidekiq -C config/sidekiq_counters.yml
17+
- asdf local ruby 2.6.6; asdf local nodejs 13.11.0; redis-cli flushall; clear; bundle exec sidekiq -C config/sidekiq.yml
18+
- asdf local ruby 2.6.6; asdf local nodejs 13.11.0; clear; bundle exec sidekiq -C config/sidekiq_counters.yml

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
13.0.1
1+
13.11.0

.teamocil-example.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ windows:
77
panes:
88
- commands:
99
- asdf local ruby 2.6.6
10-
- asdf local nodejs 13.0.1
10+
- asdf local nodejs 13.11.0
1111
- nvim
1212
focus: true
1313

@@ -17,7 +17,7 @@ windows:
1717
panes:
1818
- commands:
1919
- asdf local ruby 2.6.6
20-
- asdf local nodejs 13.0.1
20+
- asdf local nodejs 13.11.0
2121
- bundle exec rails c
2222

2323
- name: rails
@@ -26,13 +26,13 @@ windows:
2626
panes:
2727
- commands:
2828
- asdf local ruby 2.6.6
29-
- asdf local nodejs 13.0.1
29+
- asdf local nodejs 13.11.0
3030
- lsof -t -i tcp:3000 | xargs kill -KILL
3131
- redis-cli flushall
3232
- bundle exec rails s
3333
- commands:
3434
- asdf local ruby 2.6.6
35-
- asdf local nodejs 13.0.1
35+
- asdf local nodejs 13.11.0
3636
- lsof -t -i tcp:3035 | xargs kill -KILL
3737
- bundle exec ./bin/webpack-dev-server
3838

@@ -42,6 +42,6 @@ windows:
4242
panes:
4343
- commands:
4444
- asdf local ruby 2.6.6
45-
- asdf local nodejs 13.0.1
45+
- asdf local nodejs 13.11.0
4646
- redis-cli flushall
4747
- bundle exec sidekiq -C config/sidekiq.yml

.tmuxinator-example.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: code_fund_ads
33
root: /path/to/project
44

55
on_project_start: lsof -t -i tcp:3000 | xargs kill -KILL; lsof -t -i tcp:3035 | xargs kill -KILL;
6-
pre_window: asdf local ruby 2.6.6; asdf local nodejs 13.0.1;
6+
pre_window: asdf local ruby 2.6.6; asdf local nodejs 13.11.0;
77

88
windows:
99
- editor: nvim

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -162,10 +162,10 @@ The URLs/routes responsible for ad rendering are:
162162
- Ruby version `2.6.6`
163163
- [rbenv](https://github.com/rbenv/rbenv)
164164
- [asdf](https://github.com/asdf-vm/asdf-ruby)
165-
- NodeJS version `13.0.1`
165+
- NodeJS version `13.11.0`
166166
- [nvm](https://github.com/nvm-sh/nvm)
167167
- [asdf](https://github.com/asdf-vm/asdf-nodejs)
168-
- Bundler version 2.1.1
168+
- Bundler version `2.1.4`
169169
- `gem install bundler`
170170
- Yarn
171171
- Mac: [instructions](https://yarnpkg.com/lang/en/docs/install/#mac-stable)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"webpack-dev-server": "^3.10.3"
5252
},
5353
"engines": {
54-
"node": "^13.0.1",
54+
"node": "^13.11.0",
5555
"npm": "^6.12.1"
5656
}
5757
}

0 commit comments

Comments
 (0)