Skip to content

Commit

Permalink
Revert "updated deps, node 18"
Browse files Browse the repository at this point in the history
This reverts commit d563fc3.
  • Loading branch information
ntotten committed Nov 30, 2022
1 parent 5d2d885 commit ba46a47
Show file tree
Hide file tree
Showing 7 changed files with 618 additions and 449 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.209.6/containers/typescript-node/.devcontainer/base.Dockerfile

# [Choice] Node.js version (use -bullseye variants on local arm64/Apple Silicon): 16, 14, 12, 16-bullseye, 14-bullseye, 12-bullseye, 16-buster, 14-buster, 12-buster
ARG VARIANT="18-bullseye"
ARG VARIANT="14-bullseye"
FROM mcr.microsoft.com/vscode/devcontainers/typescript-node:0-${VARIANT}

# [Optional] Uncomment this section to install additional OS packages.
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// Append -bullseye or -buster to pin to an OS version.
// Use -bullseye variants on local on arm64/Apple Silicon.
"args": {
"VARIANT": "18-bullseye"
"VARIANT": "16-bullseye"
}
},

Expand Down
1 change: 0 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ module.exports = {
"no-console": "error",
"@typescript-eslint/explicit-module-boundary-types": 0,
"@typescript-eslint/no-non-null-assertion": 0,
"@typescript-eslint/no-floating-promises": "error",
},
ignorePatterns: ["test-fixtures/**"],
};
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 18.x
node-version: "14"
- run: /usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & echo "Started xvfb"
shell: bash
if: ${{ success() && matrix.os == 'ubuntu-latest' }}
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 18.x
node-version: "14"
- run: yarn install
- name: Cache node modules
uses: actions/cache@v2
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 18.x
node-version: "14"
- run: yarn install
- run: npm install -g vsce
- run: vsce package
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18
lts/*
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/glob": "^8.0.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^10.0.0",
"@types/node": "18",
"@types/node": "16.11.17",
"@types/prettier": "^2.7.1",
"@types/resolve": "^1.20.1",
"@types/semver": "^7.3.12",
Expand All @@ -104,25 +104,25 @@
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"@vscode/test-electron": "^2.1.3",
"@vscode/test-web": "^0.0.32",
"@vscode/test-web": "^0.0.30",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"fs-extra": "^10.1.0",
"glob": "^8.0.3",
"glob": "^7.2.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mocha": "^10.0.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"sinon": "^15.0.0",
"sinon": "^13.0.1",
"tmp": "^0.2.1",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"util": "^0.12.4",
"vsce": "^2.11.0",
"vscode-nls-dev": "^4.0.3",
"webpack": "^5.74.0",
"webpack-cli": "^5.0.0"
"webpack-cli": "^4.10.0"
},
"dependencies": {
"find-up": "5.0.0",
Expand Down
Loading

0 comments on commit ba46a47

Please sign in to comment.