Skip to content

Commit

Permalink
changeset
Browse files Browse the repository at this point in the history
  • Loading branch information
julianbenegas committed Mar 30, 2024
1 parent 47931cf commit 6c1a5d7
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
6 changes: 6 additions & 0 deletions packages/basehub/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# basehub

## 3.1.1

### Patch Changes

- use draft from .env if available

## 3.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/basehub/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "basehub",
"description": "The first AI-native content hub.",
"author": "JB <[email protected]>",
"version": "3.1.0",
"version": "3.1.1",
"license": "MIT",
"repository": "basehub-ai/basehub",
"bugs": "https://github.com/basehub-ai/basehub/issues",
Expand Down
5 changes: 3 additions & 2 deletions packages/basehub/src/bin/util/get-stuff-from-env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,9 @@ export const getStuffFromEnv = (options) => {
options.prefix ? `"${options.prefix}"` : undefined
} || null;
}
if (options.draft === undefined) {
options.draft = ${options.draft ? "true" : "false"};
// we'll use the draft from .env if available
if (!options.draft && ${options.draft}) {
options.draft = true;
}
const buildEnvVarName = (name) => {
Expand Down
7 changes: 7 additions & 0 deletions playground/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# playground

## 0.0.60

### Patch Changes

- Updated dependencies
- [email protected]

## 0.0.59

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion playground/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "playground",
"private": true,
"version": "0.0.59",
"version": "0.0.60",
"scripts": {
"dev": "next dev",
"build": "next build",
Expand Down

0 comments on commit 6c1a5d7

Please sign in to comment.