Skip to content

Commit

Permalink
chore: some package configs
Browse files Browse the repository at this point in the history
  • Loading branch information
marcj committed Oct 10, 2023
1 parent ea98b7e commit 063da8f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 15 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@
"packages/storage",
"packages/storage-aws-s3",
"packages/storage-ftp",
"packages/storage-sftp",
"packages/sql",
"packages/mysql",
"packages/postgres",
Expand Down
2 changes: 1 addition & 1 deletion packages/sqlite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
},
"dependencies": {
"@types/better-sqlite3": "^5.4.1",
"better-sqlite3": "^7.1.1",
"better-sqlite3": "^8.7.0",
"sqlstring-sqlite": "^0.1.1"
},
"devDependencies": {
Expand Down
15 changes: 1 addition & 14 deletions packages/storage-ftp/README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1 @@
# skeleton package

This package can be copied when a new package should be created.

### Steps after copying:

- Adjust "name", "description", and "private" in `package.json`.
- Adjust README.md
- Put this package into root `/package.json` "jest.references".
- Put this package into root `/tsconfig.json` "references".
- Put this package into root `/tsconfig.esm.json` "references".
- Add dependencies to `package.json` and run `node sync-tsconfig-deps.js` to adjust tsconfig automatically.
- Add to .github/workflows/main.yml tsc build step if necessary.
- Add to typedoc build in deepkit-website if necessary.
# Deepkit FTP Storage adapter
3 changes: 3 additions & 0 deletions tsconfig.esm.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,9 @@
},
{
"path": "packages/storage-ftp/tsconfig.esm.json"
},
{
"path": "packages/storage-sftp/tsconfig.esm.json"
}
]
}
3 changes: 3 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,9 @@
},
{
"path": "packages/storage-ftp/tsconfig.json"
},
{
"path": "packages/storage-sftp/tsconfig.json"
}
]
}

0 comments on commit 063da8f

Please sign in to comment.