Compare commits

...

2 Commits

Author SHA1 Message Date
Samy Pessé 7e74d25447 Version Packages (#2397)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-07-22 16:26:53 +02:00
Samy Pessé 3445db41ce Fix packages not including all files (#2396) 2024-07-22 16:20:06 +02:00
8 changed files with 53 additions and 7 deletions
+9
View File
@@ -1,5 +1,14 @@
# gitbook # gitbook
## 0.2.2
### Patch Changes
- Updated dependencies [3445db4]
- @gitbook/react-contentkit@0.5.0
- @gitbook/react-openapi@0.5.0
- @gitbook/react-math@0.5.0
## 0.2.1 ## 0.2.1
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "gitbook", "name": "gitbook",
"version": "0.2.1", "version": "0.2.2",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev", "dev": "next dev",
+6
View File
@@ -1,5 +1,11 @@
# @gitbook/react-contentkit # @gitbook/react-contentkit
## 0.5.0
### Minor Changes
- 3445db4: Fix files published in the NPM packages by defining "files" in "package.json"
## 0.4.0 ## 0.4.0
### Minor Changes ### Minor Changes
+8 -2
View File
@@ -1,6 +1,6 @@
{ {
"name": "@gitbook/react-contentkit", "name": "@gitbook/react-contentkit",
"version": "0.4.0", "version": "0.5.0",
"exports": { "exports": {
".": { ".": {
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
@@ -23,5 +23,11 @@
"build": "tsc", "build": "tsc",
"typecheck": "tsc --noEmit", "typecheck": "tsc --noEmit",
"dev": "tsc -w" "dev": "tsc -w"
} },
"files": [
"dist",
"src",
"README.md",
"CHANGELOG.md"
]
} }
+6
View File
@@ -1,5 +1,11 @@
# @gitbook/react-math # @gitbook/react-math
## 0.5.0
### Minor Changes
- 3445db4: Fix files published in the NPM packages by defining "files" in "package.json"
## 0.4.0 ## 0.4.0
### Minor Changes ### Minor Changes
+9 -2
View File
@@ -7,7 +7,7 @@
"default": "./dist/index.js" "default": "./dist/index.js"
} }
}, },
"version": "0.4.0", "version": "0.5.0",
"dependencies": { "dependencies": {
"object-hash": "^3.0.0" "object-hash": "^3.0.0"
}, },
@@ -22,5 +22,12 @@
"build": "tsc", "build": "tsc",
"typecheck": "tsc --noEmit", "typecheck": "tsc --noEmit",
"dev": "tsc -w" "dev": "tsc -w"
} },
"files": [
"dist",
"src",
"css",
"README.md",
"CHANGELOG.md"
]
} }
+6
View File
@@ -1,5 +1,11 @@
# @gitbook/react-openapi # @gitbook/react-openapi
## 0.5.0
### Minor Changes
- 3445db4: Fix files published in the NPM packages by defining "files" in "package.json"
## 0.4.0 ## 0.4.0
### Minor Changes ### Minor Changes
+8 -2
View File
@@ -7,7 +7,7 @@
"default": "./dist/index.js" "default": "./dist/index.js"
} }
}, },
"version": "0.4.0", "version": "0.5.0",
"dependencies": { "dependencies": {
"@scalar/api-client-react": "^0.3.7", "@scalar/api-client-react": "^0.3.7",
"@scalar/oas-utils": "0.1.6", "@scalar/oas-utils": "0.1.6",
@@ -30,5 +30,11 @@
"typecheck": "tsc --noEmit", "typecheck": "tsc --noEmit",
"unit": "bun test", "unit": "bun test",
"dev": "tsc -w" "dev": "tsc -w"
} },
"files": [
"dist",
"src",
"README.md",
"CHANGELOG.md"
]
} }