@q731514100/dg-game-front-utils 0.0.2 → 0.0.3

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 ADDED
@@ -0,0 +1 @@
1
+ # 这是一个测试包
package/package.json CHANGED
@@ -1,13 +1,17 @@
1
1
  {
2
2
  "name": "@q731514100/dg-game-front-utils",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "main": "/dist/index.js",
5
- "scripts": {
6
- "build": "tsc",
7
- "publish": "npm publish --access public"
8
- },
5
+ "files": [
6
+ "dist/",
7
+ "README.md",
8
+ "LICENSE"
9
+ ],
9
10
  "keywords": [],
10
11
  "author": "",
11
12
  "license": "ISC",
12
- "description": ""
13
- }
13
+ "description": "",
14
+ "scripts": {
15
+ "build": "tsc"
16
+ }
17
+ }
package/src/index.ts DELETED
@@ -1,9 +0,0 @@
1
- export default {
2
- test: () => {
3
- const a: string = 'test';
4
- const b: number = 1;
5
- console.log(a + b);
6
- }
7
- } as {
8
- test: () => void
9
- }
package/tsconfig.json DELETED
@@ -1,6 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "rootDir": "./src",
4
- "outDir": "./dist"
5
- }
6
- }