Skip to content

Commit

Permalink
Refactor(test-pkgs): 从主仓库迁移测试包
Browse files Browse the repository at this point in the history
  • Loading branch information
E0SelmY4V committed Apr 3, 2024
1 parent 5d5c961 commit 60c2799
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/test-pkgs/pkg0/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# 这是一个用于测试发布的包
8 changes: 8 additions & 0 deletions packages/test-pkgs/pkg0/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default `
你好!
我是程序员,
我喜欢写程序。
我试着多说几句话。
`;
21 changes: 21 additions & 0 deletions packages/test-pkgs/pkg0/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"$schema": "https://json.schemastore.org/package",
"publishConfig": {
"access": "public"
},
"name": "@accurtype/test-pkg-0",
"version": "1.1.0-dev.moreSpeak",
"description": "测试用的包",
"type": "module",
"main": "index.js",
"files": [
"index.js"
],
"author": "e0selmy4v",
"license": "MIT",
"repository": {
"directory": "utilities/test-pkgs/pkg0",
"type": "git",
"url": "git+https://github.com/accurtype/accurtype.git"
}
}
9 changes: 9 additions & 0 deletions packages/test-pkgs/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "../../tsbase.json",
"compilerOptions": {
"emitDeclarationOnly": true,
"module": "ESNext"
},
"include": ["**/*"]
}

0 comments on commit 60c2799

Please sign in to comment.