Skip to content

Commit 6df94cf

Browse files
authored
Merge pull request #20 from ClayPulse/dev
Add Pulse CLI tool
2 parents 9f3e020 + 7e162e5 commit 6df94cf

26 files changed

+10700
-39
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
22

33
# dependencies
4-
/node_modules
4+
node_modules
55

66
# production
77
/build

README.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
1-
# Pulse Editor
1+
<p align="center" style="font-size: 32px;">
2+
Pulse Editor
3+
</p>
4+
25
> [!IMPORTANT]
36
> Pulse Editor is still in its early development stage, with a BETA release planned for the end of Q2 2025. Until then, there is no official stable support for extension marketplaces. However, you can explore the platform by developing your own extensions or running our official extensions locally. This is a great opportunity to get an early look at Pulse Editor and start experimenting with its capabilities! See [Extension Development](#pulse-editor-extension-development) below.
47
8+
9+
510
<p align="center">
6-
<img alt="Pulse Editor" src="shared-assets/icons/pulse_logo.svg">
11+
<img alt="Pulse Editor" src="shared-assets/icons/pulse_logo.svg"/>
712
</p>
813

914
<div align="center">
@@ -15,7 +20,6 @@
1520
# Table of Contents
1621
<span style="font-size: 16px;">
1722

18-
- [Pulse Editor](#pulse-editor)
1923
- [Table of Contents](#table-of-contents)
2024
- [Introduction](#introduction)
2125
- [Documentation](#documentation)
@@ -39,9 +43,9 @@
3943
</span>
4044

4145
# Introduction
42-
Pulse Editor is an editor designed to develop and create with AI naturally and fluently on cross-platform devices.
46+
Pulse Editor is a cross-platform tool built to make AI-powered creation and development feel intuitive and seamless.
4347
# Documentation
44-
The documentation will be available at https://docs.pulse-ediotr.com (WIP). You can find documentation repository [here](https://github.com/ClayPulse/docs).
48+
The documentation will be available at https://docs.pulse-editor.com. You can find documentation repository [here](https://github.com/ClayPulse/docs).
4549

4650
# Getting Started -- User Guide
4751
## Web Client
@@ -97,9 +101,9 @@ Then you can rebuild native dependencies in `desktop/` using.
97101
# For Linux
98102
./node_modules/.bin/electron-rebuild -m desktop -v electron_version
99103
```
100-
For example, Electron may warn you need NODE_MODULE_VERSION 128. The corresponding Electron version to NODE_MODULE_VERSION 128 is 32.x.x. If you have electron@32.3.3 installed (check desktop/package.json), you can run:
104+
For example, Electron may warn you need NODE_MODULE_VERSION xxx. If you have electron@35.0.2 installed (check desktop/package.json), you can run:
101105
```
102-
./node_modules/.bin/electron-rebuild -m desktop -v 32.3.3
106+
./node_modules/.bin/electron-rebuild -m desktop -v 35.0.2
103107
```
104108

105109

npm-packages/cli/.editorconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
root = true
2+
3+
[*]
4+
indent_style = tab
5+
end_of_line = lf
6+
charset = utf-8
7+
trim_trailing_whitespace = true
8+
insert_final_newline = true
9+
10+
[*.yml]
11+
indent_style = space
12+
indent_size = 2

npm-packages/cli/.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

npm-packages/cli/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
dist

npm-packages/cli/.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dist

0 commit comments

Comments
 (0)