6 Commits

Author SHA1 Message Date
Darius
82b3575f2d Merge pull request #37 from itsMapleLeaf/changeset-release/main 2023-10-10 10:53:03 -05:00
github-actions[bot]
82b811c98b Version Packages 2023-10-10 15:51:06 +00:00
itsMapleLeaf
3a786310b1 upgrades 2023-10-10 10:50:15 -05:00
itsMapleLeaf
ced48a3ecb distribute .d.ts files 2023-10-10 10:47:31 -05:00
itsMapleLeaf
37b75a99e2 use type:module in helpers 2023-10-10 10:45:50 -05:00
itsMapleLeaf
f2f215d6b9 fix banner in readme 2023-09-28 12:47:39 -05:00
8 changed files with 1019 additions and 771 deletions

View File

@@ -1,5 +1,5 @@
<center> <center>
<img src="./packages/website/app/assets/banner.png" alt="Reacord: Create interactive Discord messages using React"> <img src="packages/website/src/assets/banner.png" alt="Reacord: Create interactive Discord messages using React">
</center> </center>
## Installation ∙ [![npm](https://img.shields.io/npm/v/reacord?color=blue&style=flat-square)](https://www.npmjs.com/package/reacord) ## Installation ∙ [![npm](https://img.shields.io/npm/v/reacord?color=blue&style=flat-square)](https://www.npmjs.com/package/reacord)

View File

@@ -20,13 +20,13 @@
"devDependencies": { "devDependencies": {
"@changesets/cli": "^2.26.2", "@changesets/cli": "^2.26.2",
"@itsmapleleaf/configs": "github:itsMapleLeaf/configs", "@itsmapleleaf/configs": "github:itsMapleLeaf/configs",
"eslint": "^8.50.0", "eslint": "^8.51.0",
"npm-run-all": "^4.1.5", "npm-run-all": "^4.1.5",
"prettier": "^3.0.3", "prettier": "^3.0.3",
"react": "^18.2.0", "react": "^18.2.0",
"tailwindcss": "^3.3.3", "tailwindcss": "^3.3.3",
"typescript": "^5.2.2", "typescript": "^5.2.2",
"vitest": "^0.34.5" "vitest": "^0.34.6"
}, },
"prettier": "@itsmapleleaf/configs/prettier", "prettier": "@itsmapleleaf/configs/prettier",
"eslintConfig": { "eslintConfig": {

View File

@@ -1,5 +1,6 @@
{ {
"name": "@reacord/helpers", "name": "@reacord/helpers",
"type": "module",
"version": "0.0.0", "version": "0.0.0",
"private": true, "private": true,
"scripts": { "scripts": {
@@ -8,7 +9,7 @@
"dependencies": { "dependencies": {
"@types/lodash-es": "^4.17.9", "@types/lodash-es": "^4.17.9",
"lodash-es": "^4.17.21", "lodash-es": "^4.17.21",
"type-fest": "^4.3.2", "type-fest": "^4.4.0",
"vitest": "^0.34.5" "vitest": "^0.34.6"
} }
} }

View File

@@ -1,5 +1,13 @@
# reacord # reacord
## 0.5.5
### Patch Changes
- ced48a3: distribute d.ts files again instead of the source
distributing the source causes typecheck errors when the modules it imports from (in this case, `@reacord/helpers`) don't exist in the end users' projects, so we'll just distribute d.ts files instead like normal. failed experiment :(
## 0.5.4 ## 0.5.4
### Patch Changes ### Patch Changes

View File

@@ -2,7 +2,7 @@
"name": "reacord", "name": "reacord",
"type": "module", "type": "module",
"description": "Create interactive Discord messages using React.", "description": "Create interactive Discord messages using React.",
"version": "0.5.4", "version": "0.5.5",
"homepage": "https://reacord.mapleleaf.dev", "homepage": "https://reacord.mapleleaf.dev",
"repository": "https://github.com/itsMapleLeaf/reacord.git", "repository": "https://github.com/itsMapleLeaf/reacord.git",
"changelog": "https://github.com/itsMapleLeaf/reacord/releases", "changelog": "https://github.com/itsMapleLeaf/reacord/releases",
@@ -19,17 +19,16 @@
"reacord" "reacord"
], ],
"files": [ "files": [
"library",
"dist", "dist",
"README.md", "README.md",
"LICENSE" "LICENSE"
], ],
"types": "./library/main.ts", "types": "./dist/main.d.ts",
"exports": { "exports": {
".": { ".": {
"import": "./dist/main.js", "import": "./dist/main.js",
"require": "./dist/main.cjs", "require": "./dist/main.cjs",
"types": "./library/main.ts" "types": "./dist/main.d.ts"
}, },
"./package.json": { "./package.json": {
"import": "./package.json", "import": "./package.json",
@@ -37,7 +36,7 @@
} }
}, },
"scripts": { "scripts": {
"build": "cpy ../../README.md ../../LICENSE . && tsup library/main.ts --target node16 --format cjs,esm --sourcemap", "build": "cpy ../../README.md ../../LICENSE . && tsup library/main.ts --target node16 --format cjs,esm --sourcemap --dts --dts-resolve",
"build-watch": "pnpm build -- --watch", "build-watch": "pnpm build -- --watch",
"test": "vitest --coverage --no-watch", "test": "vitest --coverage --no-watch",
"test-dev": "vitest", "test-dev": "vitest",
@@ -45,8 +44,8 @@
"typecheck": "tsc -b" "typecheck": "tsc -b"
}, },
"dependencies": { "dependencies": {
"@types/node": "^20.7.0", "@types/node": "^20.8.4",
"@types/react": "^18.2.23", "@types/react": "^18.2.27",
"@types/react-reconciler": "^0.28.5", "@types/react-reconciler": "^0.28.5",
"react-reconciler": "^0.29.0", "react-reconciler": "^0.29.0",
"rxjs": "^7.8.1" "rxjs": "^7.8.1"
@@ -74,7 +73,7 @@
"react": "^18.2.0", "react": "^18.2.0",
"tsup": "^7.2.0", "tsup": "^7.2.0",
"tsx": "^3.13.0", "tsx": "^3.13.0",
"type-fest": "^4.3.2" "type-fest": "^4.4.0"
}, },
"release-it": { "release-it": {
"git": { "git": {

View File

@@ -1,5 +1,12 @@
# website # website
## 0.4.6
### Patch Changes
- Updated dependencies [ced48a3]
- reacord@0.5.5
## 0.4.5 ## 0.4.5
### Patch Changes ### Patch Changes

View File

@@ -1,7 +1,7 @@
{ {
"type": "module", "type": "module",
"name": "website", "name": "website",
"version": "0.4.5", "version": "0.4.6",
"private": true, "private": true,
"sideEffects": false, "sideEffects": false,
"scripts": { "scripts": {
@@ -14,13 +14,13 @@
}, },
"dependencies": { "dependencies": {
"@astrojs/prefetch": "^0.3.0", "@astrojs/prefetch": "^0.3.0",
"@astrojs/react": "^2.2.2", "@astrojs/react": "^2.3.2",
"@fontsource/jetbrains-mono": "^4.5.12", "@fontsource/jetbrains-mono": "^4.5.12",
"@fontsource/rubik": "^4.5.14", "@fontsource/rubik": "^4.5.14",
"@heroicons/react": "^2.0.18", "@heroicons/react": "^2.0.18",
"@reacord/helpers": "workspace:^", "@reacord/helpers": "workspace:^",
"@tailwindcss/typography": "^0.5.10", "@tailwindcss/typography": "^0.5.10",
"astro": "^2.10.9", "astro": "^2.10.15",
"clsx": "^2.0.0", "clsx": "^2.0.0",
"reacord": "workspace:*", "reacord": "workspace:*",
"react": "^18.2.0", "react": "^18.2.0",
@@ -30,12 +30,12 @@
"devDependencies": { "devDependencies": {
"@astrojs/tailwind": "^4.0.0", "@astrojs/tailwind": "^4.0.0",
"@total-typescript/ts-reset": "^0.5.1", "@total-typescript/ts-reset": "^0.5.1",
"@types/node": "^20.7.0", "@types/node": "^20.8.4",
"@types/react": "^18.2.23", "@types/react": "^18.2.27",
"@types/react-dom": "^18.2.8", "@types/react-dom": "^18.2.12",
"npm-run-all": "^4.1.5", "npm-run-all": "^4.1.5",
"tailwindcss": "^3.3.3", "tailwindcss": "^3.3.3",
"typedoc": "^0.25.1", "typedoc": "^0.25.2",
"wait-on": "^7.0.1" "wait-on": "^7.0.1"
} }
} }

1735
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff