Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sineverba committed Feb 5, 2024
1 parent 69c73eb commit c9f56cd
Show file tree
Hide file tree
Showing 7 changed files with 50 additions and 42 deletions.
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ jobs:

test:
docker:
- image: cimg/node:20.10.0
- image: cimg/node:20.11.0

steps:
- checkout
- run: npm install -g npm@10.4.0
- run: npm ci
- run: npx jest

Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v20.10.0
v20.11.0
4 changes: 4 additions & 0 deletions .semaphore/build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ agent:
os_image: ubuntu2004

global_job_config:
env_vars:
- name: NPM_VERSION
value: 10.4.0
secrets:
- name: ACCESS_TOKENS

Expand All @@ -17,6 +20,7 @@ blocks:
- name: Deploy
commands:
- checkout
- npm install -g npm@$NPM_VERSION
- npm ci
- npm run build
- mv npmrc.txt .npmrc
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# 2.2.0
# Next version
+ Upgrade dependencies

## 2.2.0
+ Upgrade dependencies
+ Change `var` to `const` in tests

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License

Copyright (c) 2020 - 2023 sineverba
Copyright (c) 2020 - 2024 sineverba

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
64 changes: 32 additions & 32 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,17 @@
"access": "public"
},
"dependencies": {
"moment": "^2.29.4"
"moment": "^2.30.1"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/jest": "^29.5.12",
"coveralls": "^3.1.1",
"husky": "^8.0.3",
"husky": "^9.0.10",
"jest": "^29.7.0",
"jest-cucumber": "^3.0.1",
"npm-check-updates": "^16.14.12",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"npm-check-updates": "^16.14.14",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.3.3"
Expand Down

0 comments on commit c9f56cd

Please sign in to comment.