@discordeno/bot 19.0.0-next.9d5b8df → 19.0.0-next.a9703f7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +9 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@discordeno/bot",
3
- "version": "19.0.0-next.9d5b8df",
3
+ "version": "19.0.0-next.a9703f7",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "type": "module",
@@ -15,18 +15,19 @@
15
15
  "release-build": "yarn build && yarn build:type",
16
16
  "fmt": "eslint --fix \"src/**/*.ts*\"",
17
17
  "lint": "eslint \"src/**/*.ts*\"",
18
- "test:unit-coverage": "c8 mocha --no-warnings 'tests/**/*.spec.ts'",
19
- "test:unit": "c8 --r lcov mocha --no-warnings 'tests/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js discordeno",
18
+ "test:unit-coverage": "c8 mocha --no-warnings 'tests/unit/**/*.spec.ts'",
19
+ "test:unit": "c8 --r lcov mocha --no-warnings 'tests/unit/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js discordeno",
20
20
  "test:deno-unit": "swc tests --delete-dir-on-start --out-dir denoTestsDist && node ../../scripts/fixDenoTestExtension.js && deno test -A --import-map ../../denoImportMap.json denoTestsDist",
21
- "test:unit:watch": "mocha --no-warnings --watch --parallel 'tests/**/*.spec.ts'",
21
+ "test:e2e": "c8 --r lcov mocha --no-warnings --jobs 1 --t 30000 'tests/e2e/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js rest",
22
+ "test:unit:watch": "mocha --no-warnings --watch --parallel 'tests/unit/**/*.spec.ts'",
22
23
  "test:type": "tsc --noEmit",
23
24
  "test:test-type": "tsc --project tsconfig.test.json"
24
25
  },
25
26
  "dependencies": {
26
- "@discordeno/gateway": "19.0.0-next.9d5b8df",
27
- "@discordeno/rest": "19.0.0-next.9d5b8df",
28
- "@discordeno/types": "19.0.0-next.9d5b8df",
29
- "@discordeno/utils": "19.0.0-next.9d5b8df"
27
+ "@discordeno/gateway": "19.0.0-next.a9703f7",
28
+ "@discordeno/rest": "19.0.0-next.a9703f7",
29
+ "@discordeno/types": "19.0.0-next.a9703f7",
30
+ "@discordeno/utils": "19.0.0-next.a9703f7"
30
31
  },
31
32
  "devDependencies": {
32
33
  "@swc/cli": "^0.1.57",