Skip to content

Commit 5a433af

Browse files
committed
release: deploy v0.1.0
1 parent 77982de commit 5a433af

File tree

6 files changed

+25
-25
lines changed

6 files changed

+25
-25
lines changed

.husky/pre-commit

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
npm run lint
21
npm run type-check
32
npm run test
43
npm run build

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [0.1.0](https://github.com/nusr/excel/compare/v0.0.8...v0.1.0) (2025-01-27)
4+
5+
### Features
6+
7+
* init model ([6b0d06d](https://github.com/nusr/excel/commit/6b0d06d4e45f113c4e266b561837829ad89f290b))
8+
9+
### Bug Fixes
10+
11+
* simplify the import of worker ([77982de](https://github.com/nusr/excel/commit/77982de7b286ab3ffca0711120aed95e3d3b9421))
12+
* update dep ([dc9aa8f](https://github.com/nusr/excel/commit/dc9aa8ff30567f377d4e3ed1e514ac4adf026bbe))
13+
314
## [0.0.8](https://github.com/nusr/excel/compare/v0.0.7...v0.0.8) (2025-01-14)
415

516
### Features

README.md

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,6 @@ English | [中文](./README_zh.md)
1717
npm i --save excel-collab
1818
```
1919

20-
## Examples
21-
22-
- [Simple Example](https://stackblitz.com/edit/nusr-excel-simple)
23-
- [Custom Example](https://stackblitz.com/edit/nusr-excel-custom)
24-
- [Collaboration Example](https://stackblitz.com/edit/nusr-excel-collaboration)
25-
2620
## Quick Start
2721

2822
1. Create a React app
@@ -72,7 +66,12 @@ createRoot(document.getElementById('root')!).render(
7266
npm run dev
7367
```
7468

75-
## Local Developing
69+
## Examples
70+
71+
- [Simple Example](https://stackblitz.com/edit/nusr-excel-simple)
72+
- [Custom Example](https://stackblitz.com/edit/nusr-excel-custom)
73+
74+
## Collaboration Example
7675

7776
```bash
7877
git clone https://github.com/nusr/excel.git
@@ -81,10 +80,6 @@ cd excel
8180
npm i -g pnpm
8281
pnpm i
8382

84-
# debug
85-
npm start
86-
87-
# or collaboration
8883
cd demo/frontend && pnpm i && cd -
8984
cd demo/backend && pnpm i && cd -
9085
npm run dev

README_zh.md

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,6 @@
1717
npm i --save excel-collab
1818
```
1919

20-
## 示例
21-
22-
- [简单示例](https://stackblitz.com/edit/nusr-excel-simple)
23-
- [自定义示例](https://stackblitz.com/edit/nusr-excel-custom)
24-
- [协作示例](https://stackblitz.com/edit/nusr-excel-collaboration)
25-
2620
## 快速开始
2721

2822
1. 创建 React 应用
@@ -72,7 +66,12 @@ createRoot(document.getElementById('root')!).render(
7266
npm run dev
7367
```
7468

75-
## 本地开发
69+
## 示例
70+
71+
- [简单示例](https://stackblitz.com/edit/nusr-excel-simple)
72+
- [自定义示例](https://stackblitz.com/edit/nusr-excel-custom)
73+
74+
## 协作示例
7675

7776
```bash
7877
git clone https://github.com/nusr/excel.git
@@ -81,10 +80,6 @@ cd excel
8180
npm i -g pnpm
8281
pnpm i
8382

84-
# debug
85-
npm start
86-
87-
# or collaboration
8883
cd demo/frontend && pnpm i && cd -
8984
cd demo/backend && pnpm i && cd -
9085
npm run dev

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "excel-collab",
3-
"version": "0.0.8",
3+
"version": "0.1.0",
44
"description": "Online Collaboration Excel",
55
"author": "Steve Xu <[email protected]>",
66
"bugs": "https://github.com/nusr/excel/issues",
@@ -40,7 +40,7 @@
4040
"prepare": "husky && npm run build",
4141
"repeat": "jscpd --ignore \"**/*.test.tsx,**/*.test.ts\" --reporters html --mode strict --min-lines 7 --blame --gitignore --exitCode 1 .",
4242
"install-font": "cp ./scripts/SourceCodePro-VariableFont_wght.ttf /usr/share/fonts/ && fc-cache -fv",
43-
"release": "release-it patch --no-git --no-npm"
43+
"release": "release-it --no-git --no-npm"
4444
},
4545
"devDependencies": {
4646
"@release-it/bumper": "^7.0.1",

scripts/demo.gif

-667 KB
Loading

0 commit comments

Comments
 (0)