Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
4473a9af41 | ||
![]() |
d73c260fb8 | ||
![]() |
79c3284ced | ||
![]() |
c43224ed4a |
10
README.md
10
README.md
@ -0,0 +1,10 @@
|
|||||||
|
## 生产接口协议
|
||||||
|
本项目使用typescript编写,IDE推荐使用vscode。
|
||||||
|
|
||||||
|
### 编译与发布
|
||||||
|
更新 package.json 版本号
|
||||||
|
```shell
|
||||||
|
pnpm clean
|
||||||
|
pnpm build
|
||||||
|
pnpm release
|
||||||
|
```
|
@ -1,11 +1,13 @@
|
|||||||
{
|
{
|
||||||
"name": "cut-abstractions",
|
"name": "cut-abstractions",
|
||||||
"version": "0.1.1",
|
"version": "0.1.3",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.ts",
|
|
||||||
"files": ["dist/**/*"],
|
"files": ["dist/**/*"],
|
||||||
|
"main":"./dist/index.js",
|
||||||
|
"module": "./dist/index.js",
|
||||||
|
"types": "./dist/index.d.js",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./dist/**/*"
|
".": "./dist/index.js"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "tsc",
|
"build": "tsc",
|
||||||
|
3
src/index.ts
Normal file
3
src/index.ts
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
export * from './base';
|
||||||
|
export * from './processors';
|
||||||
|
export * from './parsers';
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"include": ["src"],
|
"include": ["src"],
|
||||||
"exclude": ["samples","tests"],
|
"exclude": ["node_modules","samples","tests"],
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
/* Visit https://aka.ms/tsconfig to read more about this file */
|
/* Visit https://aka.ms/tsconfig to read more about this file */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user