Skip to content

Commit

Permalink
⬆️ chore: upgrade deps
Browse files Browse the repository at this point in the history
and wait for other deps to publish to jsr
  • Loading branch information
Helloyunho committed Feb 29, 2024
1 parent 37c9130 commit af4ec13
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
5 changes: 4 additions & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,8 @@
"lint": "npx eslint src/ test/ mod.ts deploy.ts deps.ts",
"check": "deno run -A --check mod.ts",
"build-npm": "deno run -A --no-check ./scripts/build_npm.ts"
}
},
"name": "@harmony/harmony",
"version": "2.9.1",
"exports": "./mod.ts"
}
14 changes: 7 additions & 7 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
export { EventEmitter } from 'https://deno.land/x/event@2.0.0/mod.ts'
export { decompress_with as unzlib } from 'https://unpkg.com/@evan/wasm@0.0.94/target/zlib/deno.js'
export { decompress_with as unzlib } from 'npm:@evan/wasm@0.0.95/target/zlib/node.mjs'
export { fetchAuto } from 'https://deno.land/x/fetchbase64@1.0.0/mod.ts'
export { walk } from 'https://deno.land/std@0.152.0/fs/walk.ts'
export { join } from 'https://deno.land/std@0.152.0/path/mod.ts'
export { Mixin } from 'https://esm.sh/ts-mixer@6.0.0'
export { verify as edverify } from 'https://unpkg.com/@evan/wasm@0.0.94/target/ed25519/deno.js'
export { decode as decodeHex } from 'https://deno.land/std@0.152.0/encoding/hex.ts'
export { readAll } from 'https://deno.land/std@0.152.0/streams/conversion.ts'
export { walk } from 'jsr:@std/fs@0.217/walk'
export { join } from 'node:path'
export { Mixin } from 'npm:ts-mixer@6.0.0'
export { verify as edverify } from 'npm:@evan/wasm@0.0.95/target/ed25519/node.mjs'
export { decodeHex } from 'jsr:@std/encoding@0.217/hex'
export { readAll } from 'jsr:@std/io@0.217/read_all'
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@harmonyland/harmony",
"version": "2.9.0",
"version": "2.9.1",
"description": "Discord API Library for Deno",
"main": "mod.ts",
"repository": "https://github.com/harmonyland/harmony.git",
Expand Down

0 comments on commit af4ec13

Please sign in to comment.