Compare commits

...

4 Commits
0.1 ... main

Author SHA1 Message Date
xief
4473a9af41 修复发布包引用问题 2025-06-24 15:27:09 +08:00
xief
d73c260fb8 文档更新 2025-06-24 14:45:53 +08:00
xief
79c3284ced 更新文档 2025-06-24 14:36:45 +08:00
xief
c43224ed4a 修复打包引用 2025-06-24 14:21:38 +08:00
4 changed files with 19 additions and 4 deletions

View File

@ -0,0 +1,10 @@
## 生产接口协议
本项目使用typescript编写IDE推荐使用vscode。
### 编译与发布
更新 package.json 版本号
```shell
pnpm clean
pnpm build
pnpm release
```

View File

@ -1,11 +1,13 @@
{
"name": "cut-abstractions",
"version": "0.1.1",
"version": "0.1.3",
"description": "",
"main": "index.ts",
"files": ["dist/**/*"],
"main":"./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.js",
"exports": {
".": "./dist/**/*"
".": "./dist/index.js"
},
"scripts": {
"build": "tsc",

3
src/index.ts Normal file
View File

@ -0,0 +1,3 @@
export * from './base';
export * from './processors';
export * from './parsers';

View File

@ -1,6 +1,6 @@
{
"include": ["src"],
"exclude": ["samples","tests"],
"exclude": ["node_modules","samples","tests"],
"compilerOptions": {
/* Visit https://aka.ms/tsconfig to read more about this file */