Skip to content

Commit

Permalink
Merge pull request #241 from namecheap/feature/deps_update
Browse files Browse the repository at this point in the history
Feature/deps update
  • Loading branch information
StyleT authored Jan 6, 2021
2 parents 93257ce + 3679add commit 34c8055
Show file tree
Hide file tree
Showing 11 changed files with 545 additions and 258 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@ jobs:
steps:
- uses: actions/checkout@v1

- name: Use Node.js 12
- name: Use Node.js 14
uses: actions/setup-node@v1
with:
node-version: 12
node-version: 14

- name: Install Chrome deps
run: sudo apt-get update && sudo apt-get install -y libgbm-dev
Expand Down
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
engine-strict=true
458 changes: 242 additions & 216 deletions e2e/package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
"@codeceptjs/mock-request": "^0.3.0",
"@pollyjs/adapter-puppeteer": "^4.2.1",
"@pollyjs/core": "^4.2.1",
"codeceptjs": "^2.6.5",
"codeceptjs": "^2.6.11",
"cross-env": "^7.0.2",
"execa": "^4.0.1",
"puppeteer": "^3.0.4",
"ts-node": "^8.10.1",
"typescript": "^3.9.2",
"wait-on": "^5.0.0"
"wait-on": "^5.2.1"
}
}
2 changes: 1 addition & 1 deletion ilc/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:12-alpine
FROM node:14-alpine

RUN apk update && apk add --no-cache bash git openssh python make g++ findutils

Expand Down
2 changes: 1 addition & 1 deletion ilc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"dependencies": {
"@mapbox/scroll-restorer": "1.0.0",
"@namecheap/error-extender": "^1.1.1",
"axios": "^0.19.2",
"axios": "^0.21.1",
"cidr-matcher": "^2.1.1",
"config": "^3.3.1",
"cookie": "^0.4.1",
Expand Down
46 changes: 27 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,29 @@
{
"name": "ilc",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"install-all": "node install_all.js",
"start": "node start_all.js",
"start:no-apps": "node start_all.js --no-apps",
"build": "npm run build:ilc && npm run build:registry",
"build:ilc": "cd ./ilc/ && npm run build",
"build:registry": "cd ./registry/ && npm run build",
"postinstall": "npm run install-all"
},
"author": "Vladlen Fedosov",
"license": "Apache-2.0",
"dependencies": {},
"devDependencies": {
"concurrently": "^5.0.0"
}
"name": "ilc",
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/namecheap/ilc.git"
},
"scripts": {
"install-all": "node install_all.js",
"start": "node start_all.js",
"start:no-apps": "node start_all.js --no-apps",
"build": "npm run build:ilc && npm run build:registry",
"build:ilc": "cd ./ilc/ && npm run build",
"build:registry": "cd ./registry/ && npm run build",
"postinstall": "npm run install-all"
},
"author": "Vladlen Fedosov",
"license": "Apache-2.0",
"engines": {
"node": ">= 14.0.0",
"npm": ">= 6.0.0"
},
"dependencies": {},
"devDependencies": {
"concurrently": "^5.0.0"
}
}
2 changes: 1 addition & 1 deletion registry/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:12-alpine
FROM node:14-alpine

RUN apk --no-cache add --virtual builds-deps build-base python

Expand Down
Loading

0 comments on commit 34c8055

Please sign in to comment.