@discordjs/builders 0.14.0 → 0.15.0-dev.1654387861-10009a4

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/README.md +0 -1
  2. package/package.json +5 -12
package/README.md CHANGED
@@ -9,7 +9,6 @@
9
9
  <a href="https://www.npmjs.com/package/@discordjs/builders"><img src="https://img.shields.io/npm/v/@discordjs/builders.svg?maxAge=3600" alt="npm version" /></a>
10
10
  <a href="https://www.npmjs.com/package/@discordjs/builders"><img src="https://img.shields.io/npm/dt/@discordjs/builders.svg?maxAge=3600" alt="npm downloads" /></a>
11
11
  <a href="https://github.com/discordjs/discord.js/actions"><img src="https://github.com/discordjs/discord.js/actions/workflows/test.yml/badge.svg" alt="Build status" /></a>
12
- <a href="https://codecov.io/gh/discordjs/builders"><img src="https://codecov.io/gh/discordjs/builders/branch/main/graph/badge.svg" alt="Code coverage" /></a>
13
12
  </p>
14
13
  </div>
15
14
 
package/package.json CHANGED
@@ -1,13 +1,12 @@
1
1
  {
2
2
  "name": "@discordjs/builders",
3
- "version": "0.14.0",
3
+ "version": "0.15.0-dev.1654387861-10009a4",
4
4
  "description": "A set of builders that you can use when creating your bot",
5
5
  "scripts": {
6
6
  "build": "tsup",
7
- "test": "jest --pass-with-no-tests",
8
7
  "lint": "prettier --check . && eslint src __tests__ --ext mjs,js,ts",
9
8
  "format": "prettier --write . && eslint src __tests__ --ext mjs,js,ts --fix",
10
- "docs": "typedoc --json docs/typedoc-out.json src/index.ts && node scripts/docs.mjs",
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",
11
10
  "prepublishOnly": "yarn build && yarn lint && yarn test",
12
11
  "changelog": "git cliff --prepend ./CHANGELOG.md -l -c ./cliff.toml -r ../../ --include-path 'packages/builders/*'"
13
12
  },
@@ -60,21 +59,14 @@
60
59
  "tslib": "^2.4.0"
61
60
  },
62
61
  "devDependencies": {
63
- "@babel/core": "^7.18.2",
64
- "@babel/plugin-proposal-decorators": "^7.18.2",
65
- "@babel/preset-env": "^7.18.2",
66
- "@babel/preset-typescript": "^7.17.12",
67
- "@discordjs/ts-docgen": "^0.4.1",
68
- "@types/jest": "^28.1.0",
62
+ "@discordjs/scripts": "^0.1.0-dev",
69
63
  "@types/node": "^16.11.38",
70
64
  "@typescript-eslint/eslint-plugin": "^5.27.0",
71
65
  "@typescript-eslint/parser": "^5.27.0",
72
- "babel-plugin-transform-typescript-metadata": "^0.3.2",
73
66
  "eslint": "^8.17.0",
74
67
  "eslint-config-marine": "^9.4.1",
75
68
  "eslint-config-prettier": "^8.5.0",
76
69
  "eslint-plugin-import": "^2.26.0",
77
- "jest": "^28.1.0",
78
70
  "prettier": "^2.6.2",
79
71
  "tsup": "^6.0.1",
80
72
  "typedoc": "^0.22.17",
@@ -85,5 +77,6 @@
85
77
  },
86
78
  "publishConfig": {
87
79
  "access": "public"
88
- }
80
+ },
81
+ "stableVersion": "0.15.0-dev"
89
82
  }