Skip to content

Commit

Permalink
chore(connect): bump dev_deps and restructure deno config
Browse files Browse the repository at this point in the history
  • Loading branch information
TillaTheHun0 committed Jun 1, 2023
1 parent 22a8dcf commit cd5d7ca
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 24 deletions.
34 changes: 15 additions & 19 deletions packages/connect/deno.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,24 @@
{
"tasks": {
"cache": "deno cache --lock=deno.lock --lock-write deno/deps.deno.ts deno/dev_deps.ts",
"test": "deno lint && deno fmt && deno test -A --no-lock --unstable deno/tests",
"test:integration": "make test-integration",
"to-node": "make clean to-node",
"cache": "deno cache --lock=deno.lock --lock-write deno/deps.deno.ts deno/dev_deps.ts"
"to-node": "make clean to-node"
},
"fmt": {
"files": {
"exclude": [
"./CHANGELOG.md",
"./dist",
"./to-node",
"node_modules/",
"node/node_modules",
"node/harness/cjs/node_modules",
"node/harness/esm/node_modules",
"./yarn.lock"
]
},
"options": {
"lineWidth": 100,
"singleQuote": true,
"semiColons": false
}
"exclude": [
"./CHANGELOG.md",
"./dist",
"./to-node",
"node_modules/",
"node/node_modules",
"node/harness/cjs/node_modules",
"node/harness/esm/node_modules",
"./yarn.lock"
],
"lineWidth": 100,
"singleQuote": true,
"semiColons": false
},
"lint": {
"files": {
Expand Down
8 changes: 4 additions & 4 deletions packages/connect/deno.lock

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

2 changes: 1 addition & 1 deletion packages/connect/deno/dev_deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ export {
assert,
assertEquals,
assertObjectMatch,
} from 'https://deno.land/std@0.178.0/testing/asserts.ts'
} from 'https://deno.land/std@0.190.0/testing/asserts.ts'

0 comments on commit cd5d7ca

Please sign in to comment.