Skip to content

Commit

Permalink
Add nodejs version lock to remaining non-public packages
Browse files Browse the repository at this point in the history
- Sync nodejs Docker versions
  • Loading branch information
rupurt committed Dec 27, 2019
1 parent dae406f commit 5e8c13e
Show file tree
Hide file tree
Showing 14 changed files with 36 additions and 3 deletions.
3 changes: 3 additions & 0 deletions examples/testnet/package.json
Expand Up @@ -3,6 +3,9 @@
"private": true,
"version": "0.6.0",
"license": "MIT",
"engines": {
"node": "~10.16"
},
"scripts": {
"depcheck": "echo \"@chainlink/example-testnet\" && depcheck --ignore-dirs=contracts || true",
"solhint": "solhint ./contracts/**/*.sol",
Expand Down
3 changes: 3 additions & 0 deletions integration-scripts/package.json
Expand Up @@ -6,6 +6,9 @@
"repository": "https://github.com/smartcontractkit/chainlink",
"license": "MIT",
"private": true,
"engines": {
"node": "~10.16"
},
"scripts": {
"generate-typings": "typechain --target ethers --outDir src/generated \"dist/artifacts/*\"",
"postgenerate-typings": "yarn workspace chainlink export-typings ../integration-scripts/src/generated ../integration-scripts/dist/src/generated",
Expand Down
3 changes: 3 additions & 0 deletions integration/package.json
Expand Up @@ -3,6 +3,9 @@
"name": "@chainlink/integration",
"version": "0.6.0",
"license": "MIT",
"engines": {
"node": "~10.16"
},
"scripts": {
"cypressJobServer": "cross-env ts-node cypress/support/cypressJobServer.ts",
"depcheck": "echo '@chainlink/integration' && depcheck || true",
Expand Down
3 changes: 3 additions & 0 deletions package.json
Expand Up @@ -19,6 +19,9 @@
"explorer",
"integration-scripts"
],
"engines": {
"node": "~10.16"
},
"scripts": {
"lint": "eslint --ext js,jsx,ts,tsx .",
"setup": "yarn workspace chainlinkv0.5 setup && yarn workspaces run setup"
Expand Down
3 changes: 3 additions & 0 deletions styleguide/package.json
Expand Up @@ -4,6 +4,9 @@
"version": "0.0.1",
"main": "./dist/src",
"types": "./dist/src",
"engines": {
"node": "~10.16"
},
"scripts": {
"start": "start-storybook -p 9001",
"build-storybook": "build-storybook",
Expand Down
2 changes: 1 addition & 1 deletion tools/cypress-job-server/Dockerfile
Expand Up @@ -17,4 +17,4 @@ RUN yarn workspace @chainlink/cypress-job-server build
ENV JOB_SERVER_PORT 6692
EXPOSE 6692

ENTRYPOINT ["yarn", "workspace", "@chainlink/cypress-job-server", "start"]
ENTRYPOINT ["yarn", "workspace", "@chainlink/cypress-job-server", "start"]
3 changes: 3 additions & 0 deletions tools/cypress-job-server/package.json
Expand Up @@ -5,6 +5,9 @@
"main": "dist/index.js",
"repository": "https://github.com/smartcontractkit/chainlink",
"license": "MIT",
"engines": {
"node": "~10.16"
},
"scripts": {
"build": "tsc",
"start": "node ."
Expand Down
2 changes: 1 addition & 1 deletion tools/docker/integration.Dockerfile
@@ -1,4 +1,4 @@
FROM node:10.15
FROM node:10.16

# Install docker and docker compose
RUN apt-get update \
Expand Down
2 changes: 1 addition & 1 deletion tools/echo-server/Dockerfile
@@ -1,4 +1,4 @@
FROM node:10.15-alpine
FROM node:10.16-alpine

ARG SRCROOT=/usr/local/src/chainlink
WORKDIR ${SRCROOT}
Expand Down
3 changes: 3 additions & 0 deletions tools/echo-server/package.json
Expand Up @@ -5,6 +5,9 @@
"main": "dist/index.js",
"repository": "https://github.com/smartcontractkit/chainlink",
"license": "MIT",
"engines": {
"node": "~10.16"
},
"scripts": {
"build": "tsc",
"start": "node ."
Expand Down
3 changes: 3 additions & 0 deletions tools/json-api-client/package.json
Expand Up @@ -4,6 +4,9 @@
"version": "0.0.1",
"main": "./dist/src",
"types": "./dist/src",
"engines": {
"node": "~10.16"
},
"scripts": {
"build": "rimraf -rf dist && tsc",
"setup": "yarn build",
Expand Down
3 changes: 3 additions & 0 deletions tools/local-storage/package.json
Expand Up @@ -4,6 +4,9 @@
"version": "0.0.1",
"main": "./dist/src",
"types": "./dist/src",
"engines": {
"node": "~10.16"
},
"scripts": {
"build": "rimraf -rf dist && tsc",
"setup": "yarn build",
Expand Down
3 changes: 3 additions & 0 deletions tools/package.json
Expand Up @@ -6,6 +6,9 @@
"depcheck": "echo '@chainlink/tools' && depcheck || true",
"setup": "echo \"No setup required for @chainlink/tools\""
},
"engines": {
"node": "~10.16"
},
"dependencies": {
"axios": "^0.19.0"
},
Expand Down
3 changes: 3 additions & 0 deletions tools/redux/package.json
Expand Up @@ -4,6 +4,9 @@
"version": "0.0.1",
"main": "./dist/src",
"types": "./dist/src",
"engines": {
"node": "~10.16"
},
"scripts": {
"build": "rimraf -rf dist && tsc",
"setup": "yarn build"
Expand Down

0 comments on commit 5e8c13e

Please sign in to comment.