n8n-nodes-vidflow 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +33 -0
- package/dist/nodes/Vidflow/Vidflow.node.d.ts +5 -0
- package/dist/nodes/Vidflow/Vidflow.node.js +932 -0
- package/dist/nodes/Vidflow/Vidflow.node.js.map +1 -0
- package/dist/nodes/Vidflow/Vidflow.node.json +13 -0
- package/dist/nodes/Vidflow/vidflow.dark.svg +13 -0
- package/dist/nodes/Vidflow/vidflow.svg +13 -0
- package/dist/package.json +50 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +50 -0
package/README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# n8n-nodes-vidflow
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
https://github.com/JefferyHcool/BiliNote/blob/master/backend/app/transcriber/bcut.py
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
## 首次发布
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm login
|
|
11
|
+
npm run release:check
|
|
12
|
+
npm run release
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## 后续发布
|
|
16
|
+
|
|
17
|
+
先确认 Git 工作区是干净的,否则 `npm version patch` 会直接失败并报 `Git working directory not clean`。
|
|
18
|
+
|
|
19
|
+
如果当前还有未提交修改,先执行提交或暂存,例如:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
git status --short
|
|
23
|
+
git add .
|
|
24
|
+
git commit -m "chore: prepare release"
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
然后再执行:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
npm version patch
|
|
31
|
+
npm run release:check
|
|
32
|
+
npm run release
|
|
33
|
+
```
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { type IExecuteFunctions, type INodeExecutionData, type INodeType, type INodeTypeDescription } from 'n8n-workflow';
|
|
2
|
+
export declare class Vidflow implements INodeType {
|
|
3
|
+
description: INodeTypeDescription;
|
|
4
|
+
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
|
|
5
|
+
}
|