Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
styfle authored Dec 22, 2021
2 parents e565864 + f5b7fcf commit 70a3fce
Show file tree
Hide file tree
Showing 4 changed files with 571 additions and 664 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [12, 14]
node: [14, 16]
runs-on: ${{ matrix.os }}
steps:
- name: Cancel Previous Runs
Expand Down
15 changes: 6 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,7 @@
],
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.5",
"acorn": "^8.3.0",
"acorn-class-fields": "^1.0.0",
"acorn-private-class-elements": "^1.0.0",
"acorn-static-class-features": "^1.0.0",
"acorn": "^8.6.0",
"bindings": "^1.4.0",
"estree-walker": "2.0.2",
"glob": "^7.1.3",
Expand All @@ -42,7 +39,7 @@
"@google-cloud/bigquery": "^4.1.4",
"@google-cloud/firestore": "^4.11.0",
"@sentry/node": "^5.5.0",
"@tensorflow/tfjs-node": "^3.6.1",
"@tensorflow/tfjs-node": "^3.12.0",
"@tpluscode/sparql-builder": "^0.3.12",
"@types/bindings": "^1.3.0",
"@types/estree": "^0.0.47",
Expand Down Expand Up @@ -75,11 +72,11 @@
"fluent-ffmpeg": "^2.1.2",
"geo-tz": "^7.0.1",
"graphql": "^14.4.2",
"highlights": "^3.1.4",
"highlights": "^3.1.6",
"hot-shots": "^6.3.0",
"ioredis": "^4.11.1",
"isomorphic-unfetch": "^3.0.0",
"jest": "^27.0.4",
"jest": "^27.4.5",
"jimp": "^0.6.4",
"jugglingdb": "^2.0.1",
"koa": "^2.7.0",
Expand All @@ -98,11 +95,11 @@
"passport-google-oauth": "^2.0.0",
"passport-trakt": "^1.0.4",
"path-platform": "^0.11.15",
"pdf2json": "^1.1.8",
"pdf2json": "^2.0.0",
"pdfkit": "^0.10.0",
"pg": "^7.11.0",
"phantomjs-prebuilt": "^2.1.16",
"playwright-core": "^1.11.1",
"playwright-core": "^1.17.1",
"polyfill-library": "3.93.0",
"prismjs": "^1.24.1",
"pug": "^3.0.1",
Expand Down
6 changes: 3 additions & 3 deletions src/analyze.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ const asyncWalk: typeof import('../node_modules/estree-walker').asyncWalk = requ

// Note: these should be deprecated over time as they ship in Acorn core
const acorn = Parser.extend(
require("acorn-class-fields"),
require("acorn-static-class-features"),
require("acorn-private-class-elements")
//require("acorn-class-fields"),
//require("acorn-static-class-features"),
//require("acorn-private-class-elements")
);

import os from 'os';
Expand Down
Loading

0 comments on commit 70a3fce

Please sign in to comment.