-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #241 from namecheap/feature/deps_update
Feature/deps update
- Loading branch information
Showing
11 changed files
with
545 additions
and
258 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
engine-strict=true |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
||
|
Oops, something went wrong.