@discordjs/builders 0.15.0-dev.1654474112-b9df37a → 0.15.0

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 (2) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/package.json +3 -4
package/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ # [@discordjs/builders@0.15.0](https://github.com/discordjs/discord.js/compare/@discordjs/builders@0.14.0...@discordjs/builders@0.15.0) - (2022-06-05)
6
+
7
+ ## Features
8
+
9
+ - Allow builders to accept rest params and arrays (#7874) ([ad75be9](https://github.com/discordjs/discord.js/commit/ad75be9a9cf90c8624495df99b75177e6c24022f))
10
+ - Use vitest instead of jest for more speed ([8d8e6c0](https://github.com/discordjs/discord.js/commit/8d8e6c03decd7352a2aa180f6e5bc1a13602539b))
11
+ - Add scripts package for locally used scripts ([f2ae1f9](https://github.com/discordjs/discord.js/commit/f2ae1f9348bfd893332a9060f71a8a5f272a1b8b))
12
+
5
13
  # [@discordjs/builders@0.14.0](https://github.com/discordjs/discord.js/compare/@discordjs/builders@0.13.0...@discordjs/builders@0.14.0) - (2022-06-04)
6
14
 
7
15
  ## Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@discordjs/builders",
3
- "version": "0.15.0-dev.1654474112-b9df37a",
3
+ "version": "0.15.0",
4
4
  "description": "A set of builders that you can use when creating your bot",
5
5
  "scripts": {
6
6
  "build": "tsup",
@@ -8,7 +8,7 @@
8
8
  "format": "prettier --write . && eslint src __tests__ --ext mjs,js,ts --fix",
9
9
  "docs": "typedoc --json docs/typedoc-out.json src/index.ts && ts-docgen -i docs/typedoc-out.json -c docs/index.yml -o docs/docs.json",
10
10
  "prepublishOnly": "yarn build && yarn lint && yarn test",
11
- "changelog": "git cliff --prepend ./CHANGELOG.md -l -c ./cliff.toml -r ../../ --include-path 'packages/builders/*'"
11
+ "changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r ../../ --include-path 'packages/builders/*'"
12
12
  },
13
13
  "main": "./dist/index.js",
14
14
  "module": "./dist/index.mjs",
@@ -77,6 +77,5 @@
77
77
  },
78
78
  "publishConfig": {
79
79
  "access": "public"
80
- },
81
- "stableVersion": "0.15.0-dev"
80
+ }
82
81
  }