Skip to content

Commit

Permalink
merge pull request #4
Browse files Browse the repository at this point in the history
Implement Debian repository builder
  • Loading branch information
Nipheris authored Mar 27, 2024
2 parents a6750b6 + 7511a0f commit b0dc8e8
Show file tree
Hide file tree
Showing 19 changed files with 1,809 additions and 45 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ node_modules/

# build output directories
dist/
out/

# coverage report directory
/coverage/

jewel-case.config.mjs
13 changes: 12 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,25 @@
{
"type": "node",
"request": "launch",
"name": "Start",
"name": "Start plan command",
"runtimeArgs": [
],
"program": "${workspaceFolder}/dist/cli.mjs",
"args": [
"plan"
]
},
{
"type": "node",
"request": "launch",
"name": "Start apply command",
"runtimeArgs": [
],
"program": "${workspaceFolder}/dist/cli.mjs",
"args": [
"apply"
]
},
{
"type": "node",
"name": "vscode-jest-tests.v2",
Expand Down
8 changes: 2 additions & 6 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
import gitIgnore from 'eslint-config-flat-gitignore';
import tsParser from '@typescript-eslint/parser';
import tsPlugin from '@typescript-eslint/eslint-plugin';

export default [
'eslint:all',
// 'plugin:@typescript-eslint/recommended',
{
ignores: [
'coverage/**',
'dist/**',
],
},
gitIgnore(),
{
rules: {
'array-element-newline': ['error', 'consistent'],
Expand Down
6 changes: 6 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,15 @@
"@tsconfig/esm": "^1.0.2",
"@tsconfig/node18": "^2.0.0",
"@tsconfig/strictest": "^2.0.0",
"@types/ini": "^1.3.31",
"@types/node": "18.13.0",
"@types/tar": "^6.1.4",
"@types/yargs": "^17.0.16",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"editorconfig-checker": "^4.0.2",
"eslint": "^8.29.0",
"eslint-config-flat-gitignore": "^0.1.3",
"husky": "^8.0.0",
"jest": "^29.3.1",
"lint-staged": "^13.0.4",
Expand Down Expand Up @@ -38,6 +41,9 @@
"pnpm": "8.3.1"
},
"dependencies": {
"ini": "^4.1.0",
"s3-groundskeeper": "0.3.1",
"tar": "^6.1.13",
"yargs": "^17.6.2"
}
}
Loading

0 comments on commit b0dc8e8

Please sign in to comment.