Skip to content
This repository was archived by the owner on Apr 17, 2023. It is now read-only.

Commit 4605070

Browse files
authored
fix(rest): move discord-api-types into runtime deps (#91)
* fix(Rest): move discord-api-types into runtime deps * chore: bump version
1 parent 20b5df8 commit 4605070

File tree

13 files changed

+53
-52
lines changed

13 files changed

+53
-52
lines changed

libs/bitfield/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Data structure for working with bitfields",
44
"main": "./dist/index.js",
55
"types": "./types/index.d.ts",
6-
"version": "1.0.0",
6+
"version": "1.0.1",
77
"scripts": {
88
"lint": "eslint src --ext .ts",
99
"build": "tsc"
@@ -34,7 +34,7 @@
3434
"typescript": "^4.3.5"
3535
},
3636
"dependencies": {
37-
"@cordis/error": "workspace:^1.0.0",
37+
"@cordis/error": "workspace:^1.0.1",
3838
"tslib": "^2.3.0"
3939
}
4040
}

libs/brokers/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Message broker library for the cordis micro-services, built for AMQP",
44
"main": "./dist/index.js",
55
"types": "./types/index.d.ts",
6-
"version": "1.0.0",
6+
"version": "1.0.1",
77
"scripts": {
88
"lint": "eslint src --ext .ts",
99
"build": "tsc"
@@ -35,8 +35,8 @@
3535
"typescript": "^4.3.5"
3636
},
3737
"dependencies": {
38-
"@cordis/common": "workspace:^1.0.0",
39-
"@cordis/error": "workspace:^1.0.0",
38+
"@cordis/common": "workspace:^1.0.1",
39+
"@cordis/error": "workspace:^1.0.1",
4040
"@msgpack/msgpack": "^2.7.0",
4141
"amqplib": "^0.6.0",
4242
"tslib": "^2.3.0"

libs/common/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Common things amongst the cordis infrastructure",
44
"main": "./dist/index.js",
55
"types": "./types/index.d.ts",
6-
"version": "1.0.0",
6+
"version": "1.0.1",
77
"scripts": {
88
"lint": "eslint src --ext .ts",
99
"build": "tsc"
@@ -35,7 +35,7 @@
3535
"typescript": "^4.3.5"
3636
},
3737
"dependencies": {
38-
"@cordis/error": "workspace:^1.0.0",
38+
"@cordis/error": "workspace:^1.0.1",
3939
"discord-api-types": "^0.20.2",
4040
"tslib": "^2.3.0"
4141
}

libs/error/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Package for creating error structures",
44
"main": "./dist/index.js",
55
"types": "./types/index.d.ts",
6-
"version": "1.0.0",
6+
"version": "1.0.1",
77
"scripts": {
88
"lint": "eslint src --ext .ts",
99
"build": "tsc"

libs/gateway/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "The cordis gateway to Discord",
55
"main": "./dist/index.js",
66
"types": "./types/index.d.ts",
7-
"version": "1.0.0",
7+
"version": "1.0.1",
88
"scripts": {
99
"lint": "eslint src --ext .ts",
1010
"build": "tsc"
@@ -38,11 +38,11 @@
3838
"zlib-sync": "^0.1.7"
3939
},
4040
"dependencies": {
41-
"@cordis/bitfield": "workspace:^1.0.0",
42-
"@cordis/common": "workspace:^1.0.0",
43-
"@cordis/error": "workspace:^1.0.0",
44-
"@cordis/queue": "workspace:^1.0.0",
45-
"@cordis/rest": "workspace:^1.0.0",
41+
"@cordis/bitfield": "workspace:^1.0.1",
42+
"@cordis/common": "workspace:^1.0.1",
43+
"@cordis/error": "workspace:^1.0.1",
44+
"@cordis/queue": "workspace:^1.0.1",
45+
"@cordis/rest": "workspace:^1.0.1",
4646
"common-tags": "^1.8.0",
4747
"discord-api-types": "^0.20.2",
4848
"tslib": "^2.3.0",

libs/queue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Async queues for sequential operations",
44
"main": "./dist/index.js",
55
"types": "./types/index.d.ts",
6-
"version": "1.0.0",
6+
"version": "1.0.1",
77
"scripts": {
88
"lint": "eslint src --ext .ts",
99
"build": "tsc"

libs/redis-store/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Redis cache implementing the cordis Store",
44
"main": "./dist/index.js",
55
"types": "./types/index.d.ts",
6-
"version": "1.0.0",
6+
"version": "1.0.1",
77
"scripts": {
88
"lint": "eslint src --ext .ts",
99
"build": "tsc"
@@ -35,8 +35,8 @@
3535
"typescript": "^4.3.5"
3636
},
3737
"dependencies": {
38-
"@cordis/error": "workspace:^1.0.0",
39-
"@cordis/store": "workspace:^1.0.0",
38+
"@cordis/error": "workspace:^1.0.1",
39+
"@cordis/store": "workspace:^1.0.1",
4040
"tslib": "^2.3.0"
4141
}
4242
}

libs/rest/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Cordis' REST utilities for the Discord API",
55
"main": "./dist/index.js",
66
"types": "./types/index.d.ts",
7-
"version": "1.0.0",
7+
"version": "1.0.1",
88
"scripts": {
99
"lint": "eslint src --ext .ts",
1010
"build": "tsc"
@@ -32,14 +32,14 @@
3232
"devDependencies": {
3333
"@types/node": "^14.17.5",
3434
"@types/node-fetch": "^2.5.11",
35-
"discord-api-types": "^0.20.2",
3635
"fetch-blob": "^2.1.2",
3736
"typescript": "^4.3.5"
3837
},
3938
"dependencies": {
40-
"@cordis/common": "workspace:^1.0.0",
41-
"@cordis/error": "workspace:^1.0.0",
39+
"@cordis/common": "workspace:^1.0.1",
40+
"@cordis/error": "workspace:^1.0.1",
4241
"abort-controller": "^3.0.0",
42+
"discord-api-types": "^0.20.2",
4343
"form-data": "^3.0.1",
4444
"node-fetch": "^2.6.1",
4545
"tslib": "^2.3.0"

libs/store/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Map-based storage structure",
44
"main": "./dist/index.js",
55
"types": "./types/index.d.ts",
6-
"version": "1.0.0",
6+
"version": "1.0.1",
77
"scripts": {
88
"lint": "eslint src --ext .ts",
99
"build": "tsc"
@@ -34,7 +34,7 @@
3434
"typescript": "^4.3.5"
3535
},
3636
"dependencies": {
37-
"@cordis/error": "workspace:^1.0.0",
37+
"@cordis/error": "workspace:^1.0.1",
3838
"tslib": "^2.3.0"
3939
}
4040
}

libs/util/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cordis/util",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Helper methods and structures for Cordis",
55
"main": "./dist/index.js",
66
"types": "./types/index.d.ts",
@@ -34,8 +34,8 @@
3434
"typescript": "^4.3.5"
3535
},
3636
"dependencies": {
37-
"@cordis/error": "workspace:^1.0.0",
38-
"@cordis/rest": "workspace:^1.0.0",
37+
"@cordis/error": "workspace:^1.0.1",
38+
"@cordis/rest": "workspace:^1.0.1",
3939
"discord-api-types": "^0.20.2",
4040
"tslib": "^2.3.0"
4141
}

0 commit comments

Comments
 (0)