File tree Expand file tree Collapse file tree 5 files changed +942
-1118
lines changed
Expand file tree Collapse file tree 5 files changed +942
-1118
lines changed Original file line number Diff line number Diff line change 2727 "vsc-compile" : " yarn vsc-compile:client && yarn vsc-compile:server" ,
2828 "vsc-compile:client" : " cd ./packages/client && yarn run compile" ,
2929 "vsc-compile:server" : " yarn build:sqlint && cd ./packages/server && yarn run prepare-vsc-extension" ,
30+ "test" : " run-p test:server test:parser test:sqlint" ,
3031 "test:server" : " cd ./packages/server && yarn run test" ,
3132 "test:parser" : " cd ./packages/sql-parser && yarn run test" ,
3233 "test:sqlint" : " cd ./packages/sqlint && yarn run test" ,
113114 "sqlite3" : " ^5.0.3"
114115 },
115116 "resolutions" : {
116- "tar" : " >4.4.18"
117+ "tar" : " >4.4.18" ,
118+ "axios" : " ^1.7.9" ,
119+ "semver" : " ^7.7.3" ,
120+ "cross-spawn" : " ^7.0.6" ,
121+ "brace-expansion" : " ^2.0.2" ,
122+ "node-forge" : " ^1.3.2" ,
123+ "ssh2" : " ^1.16.0" ,
124+ "ip" : " ^2.0.1" ,
125+ "micromatch" : " ^4.0.8" ,
126+ "braces" : " ^3.0.3" ,
127+ "js-yaml" : " ^4.1.1" ,
128+ "@octokit/request-error" : " ^5.1.1" ,
129+ "@octokit/request" : " ^8.4.1" ,
130+ "@octokit/plugin-paginate-rest" : " ^9.2.2" ,
131+ "tmp" : " ^0.2.5" ,
132+ "socks" : " ^2.8.7"
117133 }
118134}
Original file line number Diff line number Diff line change 4141 "dependencies" : {
4242 "@deepnote/sql-parser" : " ^2.0.0" ,
4343 "@deepnote/sqlint" : " ^2.0.0" ,
44- "@google-cloud/bigquery" : " ^5.9.0 " ,
44+ "@google-cloud/bigquery" : " ^8.1.1 " ,
4545 "@types/pg" : " ^8.6.6" ,
4646 "@types/yargs" : " ^17.0.8" ,
4747 "cardinal" : " ^2.1.1" ,
Original file line number Diff line number Diff line change 3535 "@deepnote/sql-parser" : " ^2.0.0" ,
3636 "ajv" : " ^6.12.2" ,
3737 "chalk" : " ^4.0.0" ,
38- "js-yaml" : " ^3.14.0 " ,
38+ "js-yaml" : " ^4.1.1 " ,
3939 "yargs" : " ^17.3.1"
4040 },
4141 "devDependencies" : {
4242 "@types/ajv" : " ^1.0.0" ,
43- "@types/js-yaml" : " ^3.12.4 " ,
43+ "@types/js-yaml" : " ^4.0.9 " ,
4444 "@types/node" : " 14.0.26" ,
4545 "@types/yargs" : " ^17.0.0" ,
4646 "jest" : " ^26.0.1" ,
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ export function loadConfig(directoryOrFile: string): Config {
123123 break
124124 case '.yaml' :
125125 case '.yml' :
126- config = yaml . safeLoad ( fileContent ) as RawConfig
126+ config = yaml . load ( fileContent ) as RawConfig
127127 break
128128 default :
129129 config = JSON . parse ( fileContent )
You can’t perform that action at this time.
0 commit comments