Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changeset/mighty-ghosts-crash.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"pulse-editor-web": minor
"@pulse-editor/shared-utils": patch
"@pulse-editor/react-api": patch
---

0.1.1-alpha
15 changes: 15 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"mode": "pre",
"tag": "alpha",
"initialVersions": {
"pulse-editor-desktop": "0.0.1",
"pulse-editor-mobile": "0.0.1",
"@pulse-editor/react-api": "0.1.0",
"@pulse-editor/shared-utils": "0.1.0",
"pulse-editor-vscode": "0.0.3",
"pulse-editor-web": "0.0.2"
},
"changesets": [
"mighty-ghosts-crash"
]
}
13 changes: 8 additions & 5 deletions .github/workflows/release-npm-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name: Release NPM Package

on:
push:
branches: ["dev"]
branches: ["main"]
pull_request:
branches: ["dev"]
branches: ["main"]

jobs:
release:
Expand All @@ -21,6 +21,12 @@ jobs:
with:
node-version: 20

- name: Install changesets
run: npm i -D changesets

- name: Check for changesets
run: changeset status --since=main

- name: Install dependencies
run: npm i --workspace=npm-packages/shared-utils && npm i --workspace=npm-packages/react-api

Expand All @@ -30,9 +36,6 @@ jobs:
- name: Build @pulse-editor/react-api
run: npm run build --workspace=npm-packages/react-api

- name: Install changesets
run: npm i -D changesets

- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
Expand Down
46 changes: 32 additions & 14 deletions npm-packages/cli/readme.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,43 @@
# cli

> This readme is automatically generated by [create-ink-app](https://github.com/vadimdemedes/create-ink-app)

# Pulse CLI
## Install

```bash
$ npm install --global cli
$ npm install --global @pulse-editor/cli
```

## CLI
## CLI Manual

```
$ cli --help

Usage
$ cli

Options
--name Your name
pulse [command] [flags]

Commands
help [command] Show help for a command.
chat [message] (WIP) Chat with the Pulse Editor AI assistant.

Flags:
--interactive, -i
Start an interactive chat session

login Login to the Pulse Editor Platform.

Flags:
--token [token]
Login using an access token. This is the default if the
token is set in the environment variable PE_ACCESS_TOKEN.
--flow
Login using a browser flow.

logout Logout from the Pulse Editor Platform.
publish Publish Pulse Editor Extension in current directory to the Pulse Editor Platform.
create Create a new Pulse App using the starter template.
Flags:
--framework, -f [framework]
The framework to use for the new app.
Currently available options: react.
Future options: vue, angular, etc.

Examples
$ cli --name=Jane
Hello, Jane
pulse help publish

```
9 changes: 9 additions & 0 deletions npm-packages/react-api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
# @pulse-editor/react-api

## 0.1.1-alpha.0

### Patch Changes

- 0.1.1-alpha
- Updated dependencies
- @pulse-editor/[email protected]

## 0.1.0-alpha.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions npm-packages/react-api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pulse-editor/react-api",
"version": "0.1.0",
"version": "0.1.1-alpha.0",
"main": "dist/main.js",
"type": "module",
"files": [
Expand Down Expand Up @@ -35,7 +35,7 @@
"typescript-eslint": "^8.30.1"
},
"peerDependencies": {
"@pulse-editor/shared-utils": "0.1.0",
"@pulse-editor/shared-utils": "0.1.1-alpha.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
Expand Down
6 changes: 6 additions & 0 deletions npm-packages/shared-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @pulse-editor/shared-utils

## 0.1.1-alpha.0

### Patch Changes

- 0.1.1-alpha

## 0.1.0-alpha.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion npm-packages/shared-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pulse-editor/shared-utils",
"version": "0.1.0",
"version": "0.1.1-alpha.0",
"main": "dist/main.js",
"type": "module",
"files": [
Expand Down
11 changes: 11 additions & 0 deletions web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# pulse-editor-web

## 0.1.1-alpha.0

### Minor Changes

- 0.1.1-alpha

### Patch Changes

- Updated dependencies
- @pulse-editor/[email protected]

## 0.0.2-alpha.0

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pulse-editor-web",
"version": "0.0.2",
"version": "0.1.1-alpha.0",
"private": true,
"type": "module",
"scripts": {
Expand All @@ -21,7 +21,7 @@
"@heroui/theme": "^2.4.14-beta.2",
"@langchain/anthropic": "^0.3.18",
"@langchain/community": "^0.3.41",
"@pulse-editor/shared-utils": "^0.1.0",
"@pulse-editor/shared-utils": "^0.1.1-alpha.0",
"@ricky0123/vad-web": "^0.0.22",
"elevenlabs": "^1.57.0",
"framer-motion": "^12.7.4",
Expand Down