Skip to content

Commit 1dca8ea

Browse files
committed
lets see if this works
1 parent 17299ee commit 1dca8ea

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
node-version: '16.x'
1515
registry-url: 'https://registry.npmjs.org'
1616
- run: npm ci
17-
- run: tsc
17+
- run: npm run build
1818
- run: npm publish
1919
env:
2020
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}

.npmignore

Whitespace-only changes.

package.json

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
{
22
"name": "webie",
3-
"version": "0.1.6",
4-
"description": "",
3+
"version": "0.1.7",
4+
"description": "A lightweight http framework focused on simplicity.",
55
"main": "dist/index.js",
6+
"types": "dist/index.d.ts",
67
"type": "module",
78
"scripts": {
8-
"test": "echo \"Error: no test specified\" && exit 1"
9+
"test": "nodemon test/index.js",
10+
"build": "tsc"
911
},
10-
"keywords": [],
12+
"keywords": ["http", "web", "webie", "framework", "nodejs", "simple", "easy"],
1113
"author": "JDOG787",
1214
"homepage": "https://github.com/JDOG787/webie/readme.md",
1315
"repository": {
@@ -17,7 +19,7 @@
1719
"bugs": {
1820
"url": "https://github.com/JDOG787/webie/issues"
1921
},
20-
"license": "ISC",
22+
"license": "MIT",
2123
"devDependencies": {
2224
"@types/node": "^17.0.21",
2325
"nodemon": "^2.0.15"
File renamed without changes.

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"module": "esnext",
55
"target": "ES5",
66
"noImplicitAny": true,
7+
"declaration": true,
78
"moduleResolution": "node",
89
"strict": true,
910
"allowSyntheticDefaultImports": true,

0 commit comments

Comments
 (0)