Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
${{ runner.os }}-

- name: Install deps
run: npm install --audit=false
run: npm ci --audit=false

- name: Lint ESLint
run: npm run lint:eslint
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
${{ runner.os }}-

- name: Install deps
run: npm install --audit=false
run: npm ci --audit=false

- name: Build schema & docs
run: npm run build
Expand Down Expand Up @@ -126,15 +126,15 @@ jobs:
${{ runner.os }}-

- name: Install deps
run: npm install --audit=false
run: npm ci --audit=false

- name: Install client deps
working-directory: client
run: npm install --audit=false
run: npm ci --audit=false

- name: Install docs deps
working-directory: docs
run: npm install --audit=false
run: npm ci --audit=false

- name: Setup env vars
run: echo "STACKS_CORE_EVENT_HOST=http://0.0.0.0" >> $GITHUB_ENV
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
${{ runner.os }}-

- name: Install deps
run: npm install --audit=false
run: npm ci --audit=false

- name: Setup env vars
run: echo "STACKS_CORE_EVENT_HOST=http://0.0.0.0" >> $GITHUB_ENV
Expand Down Expand Up @@ -252,7 +252,7 @@ jobs:
${{ runner.os }}-

- name: Install deps
run: npm install --audit=false
run: npm ci --audit=false

- name: Setup env vars
run: echo "STACKS_CORE_EVENT_HOST=http://0.0.0.0" >> $GITHUB_ENV
Expand Down Expand Up @@ -311,7 +311,7 @@ jobs:
${{ runner.os }}-

- name: Install deps
run: npm install --audit=false
run: npm ci --audit=false

- name: Setup env vars
run: echo "STACKS_CORE_EVENT_HOST=http://0.0.0.0">> $GITHUB_ENV
Expand Down Expand Up @@ -378,7 +378,7 @@ jobs:
${{ runner.os }}-

- name: Install deps
run: npm install --audit=false
run: npm ci --audit=false

- name: Setup env vars
run: echo "STACKS_CORE_EVENT_HOST=http://0.0.0.0">> $GITHUB_ENV
Expand Down Expand Up @@ -431,7 +431,7 @@ jobs:
node-version-file: '.nvmrc'

- name: Install deps
run: npm install
run: npm ci

- name: Setup env vars
run: echo "STACKS_CORE_EVENT_HOST=http://0.0.0.0" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ports:
onOpen: ignore

tasks:
- init: npm install
- init: npm ci
command: npm run dev
- openMode: split-right
command: stacks-node start --config=stacks-blockchain/Stacks-dev.toml
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ COPY . .

RUN apk add --no-cache --virtual .build-deps alpine-sdk python3 git openjdk8-jre cmake
RUN echo "GIT_TAG=$(git tag --points-at HEAD)" >> .env
RUN npm config set unsafe-perm true && npm install && npm run build && npm run build:docs && npm prune --production
RUN npm config set unsafe-perm true && npm ci && npm run build && npm run build:docs && npm prune --production
RUN apk del .build-deps

CMD ["node", "./lib/index.js"]
46 changes: 23 additions & 23 deletions client/package-lock.json

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

46 changes: 23 additions & 23 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,31 +39,31 @@
],
"dependencies": {
"@stacks/stacks-blockchain-api-types": "*",
"@types/ws": "^7.4.0",
"cross-fetch": "^3.0.6",
"eventemitter3": "^4.0.4",
"jsonrpc-lite": "^2.2.0",
"socket.io-client": "^4.0.1",
"ws": "^7.4.0"
"@types/ws": "7.4.7",
"cross-fetch": "3.1.4",
"eventemitter3": "4.0.7",
"jsonrpc-lite": "2.2.0",
"socket.io-client": "4.4.0",
"ws": "7.5.6"
},
"devDependencies": {
"@apidevtools/swagger-cli": "^4.0.4",
"@openapitools/openapi-generator-cli": "^2.4.12",
"@stacks/eslint-config": "^1.0.7",
"@apidevtools/swagger-cli": "4.0.4",
"@openapitools/openapi-generator-cli": "2.4.21",
"@stacks/eslint-config": "1.2.0",
"@stacks/prettier-config": "0.0.7",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"concurrently": "^6.0.2",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"http-server": "^14.0.0",
"microbundle": "^0.13.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"shx": "^0.3.2",
"ts-node": "^9.1.1",
"typedoc": "^0.20.36",
"typescript": "^4.2.4"
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"concurrently": "6.5.1",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.1",
"http-server": "14.0.0",
"microbundle": "0.13.3",
"prettier": "2.5.1",
"rimraf": "3.0.2",
"shx": "0.3.3",
"ts-node": "9.1.1",
"typedoc": "0.20.37",
"typescript": "4.2.4"
}
}
2 changes: 1 addition & 1 deletion docker/stx-rosetta.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN apt-get update -y \
&& git clone -b ${STACKS_API_VERSION} --depth 1 https://github.com/${STACKS_API_REPO} . \
&& echo "GIT_TAG=$(git tag --points-at HEAD)" >> .env \
&& npm config set unsafe-perm true \
&& npm install \
&& npm ci \
&& npm run build \
&& npm prune --production

Expand Down
Loading