- Adds the `--include=VERSION` flag to ensure the version file is part of the build output for consistency.
24 lines
637 B
JSON
24 lines
637 B
JSON
{
|
|
"tasks": {
|
|
"start": "deno run -A src/mod.ts",
|
|
"test": "deno test -A --coverage **/__tests__/*.test.ts",
|
|
"build": "deno compile --include=VERSION --allow-env --allow-write --output dist/systemd-timer src/mod.ts"
|
|
},
|
|
"compilerOptions": {},
|
|
"fmt": {
|
|
"useTabs": false,
|
|
"lineWidth": 80,
|
|
"indentWidth": 4,
|
|
"semiColons": true,
|
|
"singleQuote": true,
|
|
"proseWrap": "preserve",
|
|
"include": [
|
|
"src/",
|
|
"mod.ts"
|
|
]
|
|
},
|
|
"exclude": [],
|
|
"imports": {
|
|
"@cliffy/command": "jsr:@cliffy/command@1.0.0-rc.7"
|
|
}
|
|
} |