Skip to content

Commit 68d89ea

Browse files
chore(release): 2.1.0 [skip ci]
# [2.1.0](v2.0.0...v2.1.0) (2023-12-03) ### Features * re-add Blob support ([cd17d63](cd17d63)), closes [#61](#61) * re-add Blob support ([#62](#62)) ([e79d1ee](e79d1ee)), closes [#61](#61)
1 parent e79d1ee commit 68d89ea

File tree

2 files changed

+123
-115
lines changed

2 files changed

+123
-115
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# [2.1.0](https://github.com/peers/js-binarypack/compare/v2.0.0...v2.1.0) (2023-12-03)
2+
3+
4+
### Features
5+
6+
* re-add Blob support ([cd17d63](https://github.com/peers/js-binarypack/commit/cd17d638e06dd4388145ac62f24c109030ee0e36)), closes [#61](https://github.com/peers/js-binarypack/issues/61)
7+
* re-add Blob support ([#62](https://github.com/peers/js-binarypack/issues/62)) ([e79d1ee](https://github.com/peers/js-binarypack/commit/e79d1eef75a6a9e6f07f5af0aa031925583359ad)), closes [#61](https://github.com/peers/js-binarypack/issues/61)
8+
19
# [2.0.0](https://github.com/peers/js-binarypack/compare/v1.0.2...v2.0.0) (2023-06-22)
210

311

package.json

+115-115
Original file line numberDiff line numberDiff line change
@@ -1,118 +1,118 @@
11
{
22
"name": "peerjs-js-binarypack",
3-
"version": "2.0.0",
4-
"description": "BinaryPack serialization",
5-
"homepage": "https://github.com/peers/js-binarypack",
6-
"main": "dist/binarypack.cjs",
7-
"module": "dist/binarypack.mjs",
8-
"source": "lib/binarypack.ts",
9-
"types": "dist/binarypack.d.ts",
10-
"type": "module",
11-
"exports": {
12-
".": {
13-
"import": {
14-
"types": "./dist/binarypack.d.ts",
15-
"default": "./dist/binarypack.mjs"
16-
},
17-
"require": {
18-
"types": "./dist/binarypack.d.ts",
19-
"default": "./dist/binarypack.cjs"
20-
}
21-
}
22-
},
23-
"scripts": {
24-
"watch": "parcel watch",
25-
"build": "parcel build",
26-
"format": "biome format --write .",
27-
"lint": "eslint --ext .js,.ts .",
28-
"check": "tsc --noEmit"
29-
},
30-
"repository": {
31-
"type": "git",
32-
"url": "https://github.com/peers/js-binarypack"
33-
},
34-
"funding": {
35-
"type": "opencollective",
36-
"url": "https://opencollective.com/peer"
37-
},
38-
"collective": {
39-
"type": "opencollective",
40-
"url": "https://opencollective.com/peer"
41-
},
42-
"author": "Eric Zhang",
43-
"contributors": [
44-
{
45-
"name": "Eric Zhang",
46-
"email": "[email protected]"
47-
},
48-
{
49-
"name": "Jonas Gloning",
50-
"email": "[email protected]"
51-
},
52-
{
53-
"name": "afrokick",
54-
"email": "[email protected]"
55-
},
56-
{
57-
"name": "manvalls",
58-
"email": "[email protected]"
59-
},
60-
{
61-
"name": "Michelle Bu",
62-
"email": "[email protected]"
63-
},
64-
{
65-
"name": "Liu Cong",
66-
"email": "[email protected]"
67-
},
68-
{
69-
"name": "Michelle Bu",
70-
"email": "[email protected]"
71-
},
72-
{
73-
"name": "lmb",
74-
"email": "[email protected]"
75-
},
76-
{
77-
"name": "orcaman",
78-
"email": "[email protected]"
79-
},
80-
{
81-
"name": "Godfrey Chan",
82-
"email": "[email protected]"
83-
},
84-
{
85-
"name": "Jarrett Cruger",
86-
"email": "[email protected]"
87-
},
88-
{
89-
"name": "Rossi Lorenzo",
90-
"email": "[email protected]"
91-
},
92-
{
93-
"name": "divec",
94-
"email": "[email protected]"
95-
},
96-
{
97-
"name": "renovate[bot]",
98-
"email": "29139614+renovate[bot]@users.noreply.github.com"
99-
}
100-
],
101-
"devDependencies": {
102-
"@biomejs/biome": "1.4.1",
103-
"@jest/globals": "^29.7.0",
104-
"@parcel/packager-ts": "^2.8.3",
105-
"@parcel/transformer-typescript-types": "^2.8.3",
106-
"@semantic-release/changelog": "^6.0.2",
107-
"@semantic-release/git": "^10.0.1",
108-
"@typescript-eslint/eslint-plugin": "^6.0.0",
109-
"eslint": "^8.34.0",
110-
"parcel": "^2.8.3",
111-
"semantic-release": "^20.1.0",
112-
"typescript": "^5.0.0"
113-
},
114-
"license": "MIT",
115-
"engines": {
116-
"node": ">= 14.0.0"
117-
}
3+
"version": "2.1.0",
4+
"description": "BinaryPack serialization",
5+
"homepage": "https://github.com/peers/js-binarypack",
6+
"main": "dist/binarypack.cjs",
7+
"module": "dist/binarypack.mjs",
8+
"source": "lib/binarypack.ts",
9+
"types": "dist/binarypack.d.ts",
10+
"type": "module",
11+
"exports": {
12+
".": {
13+
"import": {
14+
"types": "./dist/binarypack.d.ts",
15+
"default": "./dist/binarypack.mjs"
16+
},
17+
"require": {
18+
"types": "./dist/binarypack.d.ts",
19+
"default": "./dist/binarypack.cjs"
20+
}
21+
}
22+
},
23+
"scripts": {
24+
"watch": "parcel watch",
25+
"build": "parcel build",
26+
"format": "biome format --write .",
27+
"lint": "eslint --ext .js,.ts .",
28+
"check": "tsc --noEmit"
29+
},
30+
"repository": {
31+
"type": "git",
32+
"url": "https://github.com/peers/js-binarypack"
33+
},
34+
"funding": {
35+
"type": "opencollective",
36+
"url": "https://opencollective.com/peer"
37+
},
38+
"collective": {
39+
"type": "opencollective",
40+
"url": "https://opencollective.com/peer"
41+
},
42+
"author": "Eric Zhang",
43+
"contributors": [
44+
{
45+
"name": "Eric Zhang",
46+
"email": "[email protected]"
47+
},
48+
{
49+
"name": "Jonas Gloning",
50+
"email": "[email protected]"
51+
},
52+
{
53+
"name": "afrokick",
54+
"email": "[email protected]"
55+
},
56+
{
57+
"name": "manvalls",
58+
"email": "[email protected]"
59+
},
60+
{
61+
"name": "Michelle Bu",
62+
"email": "[email protected]"
63+
},
64+
{
65+
"name": "Liu Cong",
66+
"email": "[email protected]"
67+
},
68+
{
69+
"name": "Michelle Bu",
70+
"email": "[email protected]"
71+
},
72+
{
73+
"name": "lmb",
74+
"email": "[email protected]"
75+
},
76+
{
77+
"name": "orcaman",
78+
"email": "[email protected]"
79+
},
80+
{
81+
"name": "Godfrey Chan",
82+
"email": "[email protected]"
83+
},
84+
{
85+
"name": "Jarrett Cruger",
86+
"email": "[email protected]"
87+
},
88+
{
89+
"name": "Rossi Lorenzo",
90+
"email": "[email protected]"
91+
},
92+
{
93+
"name": "divec",
94+
"email": "[email protected]"
95+
},
96+
{
97+
"name": "renovate[bot]",
98+
"email": "29139614+renovate[bot]@users.noreply.github.com"
99+
}
100+
],
101+
"devDependencies": {
102+
"@biomejs/biome": "1.4.1",
103+
"@jest/globals": "^29.7.0",
104+
"@parcel/packager-ts": "^2.8.3",
105+
"@parcel/transformer-typescript-types": "^2.8.3",
106+
"@semantic-release/changelog": "^6.0.2",
107+
"@semantic-release/git": "^10.0.1",
108+
"@typescript-eslint/eslint-plugin": "^6.0.0",
109+
"eslint": "^8.34.0",
110+
"parcel": "^2.8.3",
111+
"semantic-release": "^20.1.0",
112+
"typescript": "^5.0.0"
113+
},
114+
"license": "MIT",
115+
"engines": {
116+
"node": ">= 14.0.0"
117+
}
118118
}

0 commit comments

Comments
 (0)