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>
<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>
## 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": {
"@changesets/cli": "^2.26.2",
"@itsmapleleaf/configs": "github:itsMapleLeaf/configs",
"eslint": "^8.50.0",
"eslint": "^8.51.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"react": "^18.2.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"vitest": "^0.34.5"
"vitest": "^0.34.6"
},
"prettier": "@itsmapleleaf/configs/prettier",
"eslintConfig": {

View File

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

View File

@@ -1,5 +1,13 @@
# 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
### Patch Changes

View File

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

View File

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

View File

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

1735
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff