generated from arbetsmarknad/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare to start exloring the autoupdate implementation
- Loading branch information
1 parent
411c430
commit f94c39d
Showing
4 changed files
with
17 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,25 @@ | ||
{ | ||
"author": "Henry Catalini Smith <[email protected]>", | ||
"bin": { | ||
"node": "./bin.js" | ||
}, | ||
"dependencies": { | ||
"commander": "^13.1.0" | ||
}, | ||
"description": "Automatic update tooling for work environment data", | ||
"devDependencies": { | ||
"@types/node": "^20", | ||
"tsx": "^4.19.2", | ||
"typedoc": "^0.27.6", | ||
"typescript": "^5" | ||
}, | ||
"files": [ | ||
"bin.js", | ||
"version.js" | ||
], | ||
"name": "@arbetsmarknad/node", | ||
"name": "@arbetsmiljo/autoupdate", | ||
"scripts": { | ||
"build": "tsc", | ||
"node": "tsx ./bin.ts" | ||
"autoupdate": "tsx ./bin.ts", | ||
"build": "tsc" | ||
}, | ||
"typedocOptions": { | ||
"entryPoints": [ | ||
"./version.ts" | ||
] | ||
"entryPoints": [] | ||
}, | ||
"version": "0.0.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# node | ||
# autoupdate | ||
|
||
Node starter project. | ||
Automatic update tooling for work environment data. | ||
|
||
## License | ||
|
||
[MIT](https://github.com/arbetsmarknad/node/blob/main/license) | ||
[MIT](https://github.com/arbetsmiljo/autoupdate/blob/main/license) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export async function sandbox() { | ||
console.log("sandbox"); | ||
} |