Skip to content

Commit

Permalink
chore(release): 2.1.0 [skip ci]
Browse files Browse the repository at this point in the history
# [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)
  • Loading branch information
semantic-release-bot committed Dec 3, 2023
1 parent e79d1ee commit 68d89ea
Show file tree
Hide file tree
Showing 2 changed files with 123 additions and 115 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# [2.1.0](https://github.com/peers/js-binarypack/compare/v2.0.0...v2.1.0) (2023-12-03)


### Features

* re-add Blob support ([cd17d63](https://github.com/peers/js-binarypack/commit/cd17d638e06dd4388145ac62f24c109030ee0e36)), closes [#61](https://github.com/peers/js-binarypack/issues/61)
* 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)

# [2.0.0](https://github.com/peers/js-binarypack/compare/v1.0.2...v2.0.0) (2023-06-22)


Expand Down
230 changes: 115 additions & 115 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,118 +1,118 @@
{
"name": "peerjs-js-binarypack",
"version": "2.0.0",
"description": "BinaryPack serialization",
"homepage": "https://github.com/peers/js-binarypack",
"main": "dist/binarypack.cjs",
"module": "dist/binarypack.mjs",
"source": "lib/binarypack.ts",
"types": "dist/binarypack.d.ts",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/binarypack.d.ts",
"default": "./dist/binarypack.mjs"
},
"require": {
"types": "./dist/binarypack.d.ts",
"default": "./dist/binarypack.cjs"
}
}
},
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"format": "biome format --write .",
"lint": "eslint --ext .js,.ts .",
"check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/peers/js-binarypack"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/peer"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/peer"
},
"author": "Eric Zhang",
"contributors": [
{
"name": "Eric Zhang",
"email": "[email protected]"
},
{
"name": "Jonas Gloning",
"email": "[email protected]"
},
{
"name": "afrokick",
"email": "[email protected]"
},
{
"name": "manvalls",
"email": "[email protected]"
},
{
"name": "Michelle Bu",
"email": "[email protected]"
},
{
"name": "Liu Cong",
"email": "[email protected]"
},
{
"name": "Michelle Bu",
"email": "[email protected]"
},
{
"name": "lmb",
"email": "[email protected]"
},
{
"name": "orcaman",
"email": "[email protected]"
},
{
"name": "Godfrey Chan",
"email": "[email protected]"
},
{
"name": "Jarrett Cruger",
"email": "[email protected]"
},
{
"name": "Rossi Lorenzo",
"email": "[email protected]"
},
{
"name": "divec",
"email": "[email protected]"
},
{
"name": "renovate[bot]",
"email": "29139614+renovate[bot]@users.noreply.github.com"
}
],
"devDependencies": {
"@biomejs/biome": "1.4.1",
"@jest/globals": "^29.7.0",
"@parcel/packager-ts": "^2.8.3",
"@parcel/transformer-typescript-types": "^2.8.3",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"eslint": "^8.34.0",
"parcel": "^2.8.3",
"semantic-release": "^20.1.0",
"typescript": "^5.0.0"
},
"license": "MIT",
"engines": {
"node": ">= 14.0.0"
}
"version": "2.1.0",
"description": "BinaryPack serialization",
"homepage": "https://github.com/peers/js-binarypack",
"main": "dist/binarypack.cjs",
"module": "dist/binarypack.mjs",
"source": "lib/binarypack.ts",
"types": "dist/binarypack.d.ts",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/binarypack.d.ts",
"default": "./dist/binarypack.mjs"
},
"require": {
"types": "./dist/binarypack.d.ts",
"default": "./dist/binarypack.cjs"
}
}
},
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"format": "biome format --write .",
"lint": "eslint --ext .js,.ts .",
"check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/peers/js-binarypack"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/peer"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/peer"
},
"author": "Eric Zhang",
"contributors": [
{
"name": "Eric Zhang",
"email": "[email protected]"
},
{
"name": "Jonas Gloning",
"email": "[email protected]"
},
{
"name": "afrokick",
"email": "[email protected]"
},
{
"name": "manvalls",
"email": "[email protected]"
},
{
"name": "Michelle Bu",
"email": "[email protected]"
},
{
"name": "Liu Cong",
"email": "[email protected]"
},
{
"name": "Michelle Bu",
"email": "[email protected]"
},
{
"name": "lmb",
"email": "[email protected]"
},
{
"name": "orcaman",
"email": "[email protected]"
},
{
"name": "Godfrey Chan",
"email": "[email protected]"
},
{
"name": "Jarrett Cruger",
"email": "[email protected]"
},
{
"name": "Rossi Lorenzo",
"email": "[email protected]"
},
{
"name": "divec",
"email": "[email protected]"
},
{
"name": "renovate[bot]",
"email": "29139614+renovate[bot]@users.noreply.github.com"
}
],
"devDependencies": {
"@biomejs/biome": "1.4.1",
"@jest/globals": "^29.7.0",
"@parcel/packager-ts": "^2.8.3",
"@parcel/transformer-typescript-types": "^2.8.3",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"eslint": "^8.34.0",
"parcel": "^2.8.3",
"semantic-release": "^20.1.0",
"typescript": "^5.0.0"
},
"license": "MIT",
"engines": {
"node": ">= 14.0.0"
}
}

0 comments on commit 68d89ea

Please sign in to comment.