-
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.
- Loading branch information
Showing
56 changed files
with
450 additions
and
434 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,4 @@ build | |
docs/ | ||
coverage/ | ||
|
||
node_modules | ||
|
||
tsconfig.tsbuildinfo | ||
node_modules |
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,5 +1,63 @@ | ||
# Changelog | ||
|
||
## v1.11.0-canary-20250107-f1de4fe | ||
|
||
[compare changes](https://github.com/Basalt-Lab/basalt-helper/compare/v1.10.4-canary-20250107-f743ff5...v1.11.0-canary-20250107-f1de4fe) | ||
|
||
### 🚀 Enhancements | ||
|
||
- **🚀:** Update register & get methods to take class with c'tor args ([4f6990f](https://github.com/Basalt-Lab/basalt-helper/commit/4f6990f)) | ||
|
||
### 🧹 Refactors | ||
|
||
- **🔧:** Singleton storage into a single registry + args in register ([6d168cb](https://github.com/Basalt-Lab/basalt-helper/commit/6d168cb)) | ||
|
||
### 🦉 Chore | ||
|
||
- **🦉:** Update copyright year to 2025 in LICENSE file ([dd85d63](https://github.com/Basalt-Lab/basalt-helper/commit/dd85d63)) | ||
- **🦉:** V1.11.0-canary-20250107-eaefc28 ([b46fcfb](https://github.com/Basalt-Lab/basalt-helper/commit/b46fcfb)) | ||
|
||
### 🧪 Tests | ||
|
||
- **🧪:** Enhance SingletonManager tests with add class and arg handling ([6f3a88c](https://github.com/Basalt-Lab/basalt-helper/commit/6f3a88c)) | ||
|
||
### ❤️ Contributors | ||
|
||
- Ruby <[email protected]> | ||
- Github-actions <[email protected]> | ||
|
||
## v1.11.0-canary-20250107-eaefc28 | ||
|
||
[compare changes](https://github.com/Basalt-Lab/basalt-helper/compare/v1.10.4-canary-20250107-f743ff5...v1.11.0-canary-20250107-eaefc28) | ||
|
||
### 🚀 Enhancements | ||
|
||
- **🚀:** Update register & get methods to take class with c'tor args ([4f6990f](https://github.com/Basalt-Lab/basalt-helper/commit/4f6990f)) | ||
|
||
### 🦉 Chore | ||
|
||
- **🦉:** Update copyright year to 2025 in LICENSE file ([dd85d63](https://github.com/Basalt-Lab/basalt-helper/commit/dd85d63)) | ||
|
||
### 🧪 Tests | ||
|
||
- **🧪:** Enhance SingletonManager tests with add class and arg handling ([6f3a88c](https://github.com/Basalt-Lab/basalt-helper/commit/6f3a88c)) | ||
|
||
### ❤️ Contributors | ||
|
||
- Ruby <[email protected]> | ||
|
||
## v1.10.4-canary-20250107-f743ff5 | ||
|
||
[compare changes](https://github.com/Basalt-Lab/basalt-helper/compare/v1.10.3...v1.10.4-canary-20250107-f743ff5) | ||
|
||
### 🧹 Refactors | ||
|
||
- **🧹:** Architecture + code + tests ([59d1c9f](https://github.com/Basalt-Lab/basalt-helper/commit/59d1c9f)) | ||
|
||
### ❤️ Contributors | ||
|
||
- Ruby <[email protected]> | ||
|
||
## v1.10.3 | ||
|
||
[compare changes](https://github.com/Basalt-Lab/basalt-helper/compare/v1.10.2...v1.10.3) | ||
|
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,27 +1,42 @@ | ||
import dts from 'bun-plugin-dts'; | ||
|
||
import pkg from './package.json'; | ||
|
||
const dependencies = 'dependencies' in pkg ? Object.keys(pkg.dependencies ?? {}) : []; | ||
const devDependencies = 'devDependencies' in pkg ? Object.keys(pkg.devDependencies ?? {}) : []; | ||
const peerDependencies = 'peerDependencies' in pkg ? Object.keys(pkg.peerDependencies ?? {}) : []; | ||
|
||
await Bun.build({ | ||
target: 'node', | ||
external: [...dependencies, ...devDependencies, ...peerDependencies], | ||
root: './source', | ||
entrypoints: [ | ||
'./source/index.ts', | ||
'./source/common/error/index.ts', | ||
'./source/common/type/data/index.ts', | ||
'./source/common/util/index.ts', | ||
'./source/domain/service/data/index.ts', | ||
'./source/domain/service/data/strategy/transformer/index.ts', | ||
'./source/domain/service/global/index.ts', | ||
'./source/domain/service/security/index.ts', | ||
'./source/common/i18n/index.ts' | ||
'./source/core/data/index.ts', | ||
'./source/core/data/transformer/index.ts', | ||
|
||
'./source/core/security/index.ts', | ||
|
||
'./source/core/util/index.ts', | ||
|
||
'./source/error/index.ts', | ||
'./source/error/key/index.ts', | ||
|
||
'./source/i18n/index.ts', | ||
|
||
'./source/types/index.ts', | ||
|
||
'./source/index.ts' | ||
], | ||
plugins: [ | ||
dts({ | ||
output: { | ||
noBanner: true | ||
} | ||
}) | ||
], | ||
outdir: './build', | ||
splitting: true, | ||
format: 'esm', | ||
minify: true, | ||
sourcemap: process.env.NODE_ENV === 'development' ? 'external' : 'none', | ||
target: 'node', | ||
sourcemap: 'none' | ||
}); |
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.