Skip to content

Commit 6459832

Browse files
committed
fix: clean
1 parent 93ac811 commit 6459832

File tree

4 files changed

+17
-12
lines changed

4 files changed

+17
-12
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,4 +131,4 @@ dist
131131

132132
# IDE
133133
.idea
134-
.tool-versions
134+
.tool-versions

.npmignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
src/
22
tests/
33
tsconfig.json
4-
node_modules/
4+
node_modules/

package.json

+14-9
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@
33
"version": "0.0.1",
44
"description": "Library for cdk/sst constructs utils",
55
"main": "index.js",
6+
"scripts": {
7+
"build": "tsc",
8+
"test": "jest",
9+
"prepare": "npm run build"
10+
},
11+
"devDependencies": {
12+
"@types/jest": "^29.5.13",
13+
"@types/node": "^22.7.6",
14+
"eslint": "^9.12.0",
15+
"jest": "^29.7.0",
16+
"ts-node": "^10.9.2",
17+
"typescript": "^5.6.3"
18+
},
619
"keywords": [
720
"cdk",
821
"sst",
@@ -15,13 +28,5 @@
1528
},
1629
"homepage": "https://github.com/lablabs/cdk-constructs-serverless",
1730
"author": "[email protected]",
18-
"license": "MIT",
19-
"devDependencies": {
20-
"@types/jest": "^29.5.13",
21-
"@types/node": "^22.7.6",
22-
"eslint": "^9.12.0",
23-
"jest": "^29.7.0",
24-
"ts-node": "^10.9.2",
25-
"typescript": "^5.6.3"
26-
}
31+
"license": "MIT"
2732
}

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export function greet(name: string): string {
22
return `Hello, ${name}!`;
3-
}
3+
}

0 commit comments

Comments
 (0)