Skip to content

Commit

Permalink
feat: tip for copying package
Browse files Browse the repository at this point in the history
  • Loading branch information
linbudu599 committed Apr 7, 2022
1 parent d91d8bb commit 41709b4
Show file tree
Hide file tree
Showing 10 changed files with 2,793 additions and 1,075 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
"prettier": "^2.5.1",
"prompts": "^2.4.2",
"semver": "^7.3.5",
"simple-git": "^3.5.0",
"ts-node": "^10.5.0",
"ts-node-dev": "^1.1.8",
"type-fest": "^2.12.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/apollo-element-starter/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"main": "index.html",
"name": "apollo-elements-app",
"version": "2.0.0",
"version": "3.0.0",
"type": "module",
"author": "",
"license": "ISC",
Expand Down Expand Up @@ -48,4 +48,4 @@
"typescript": "^4.x"
},
"keywords": []
}
}
13 changes: 13 additions & 0 deletions packages/rtt/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "rtt",
"version": "0.0.1",
"description": "",
"main": "./dist/index.js",
"license": "MIT",
"scripts": {
"build": "tsc",
"dev": "tsnd --respawn --transpile-only src/index.ts",
"watch": "tsc --watch",
"check": "tsc --noEmit"
}
}
2 changes: 2 additions & 0 deletions packages/rtt/src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

console.log("node-lib-starter is ready!");
20 changes: 20 additions & 0 deletions packages/rtt/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"target": "ES2018",
"module": "commonjs",
"lib": [
"esnext"
],
"rootDir": "src",
"outDir": "dist",
"esModuleInterop": true,
"skipLibCheck": true,
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true
},
"include": [
"src"
]
}
Loading

0 comments on commit 41709b4

Please sign in to comment.