@bejibun/redis 0.1.29 → 0.1.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/configure.js +6 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file.
|
|
|
3
3
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
+
## [v0.1.30](https://github.com/crenata/bejibun-redis/compare/v0.1.29...v0.1.30) - 2025-10-22
|
|
7
|
+
|
|
8
|
+
### 🩹 Fixes
|
|
9
|
+
- Fix `configure.ts` configuration file
|
|
10
|
+
|
|
11
|
+
### 📖 Changes
|
|
12
|
+
|
|
13
|
+
### ❤️Contributors
|
|
14
|
+
- Havea Crenata ([@crenata](https://github.com/crenata))
|
|
15
|
+
- Ghulje ([@ghulje](https://github.com/ghulje))
|
|
16
|
+
|
|
17
|
+
**Full Changelog**: https://github.com/crenata/bejibun-redis/blob/master/CHANGELOG.md
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
6
21
|
## [v0.1.29](https://github.com/crenata/bejibun-redis/compare/v0.1.27...v0.1.29) - 2025-10-22
|
|
7
22
|
|
|
8
23
|
### 🩹 Fixes
|
package/configure.js
CHANGED
|
@@ -2,10 +2,13 @@ import App from "@bejibun/app";
|
|
|
2
2
|
import Logger from "@bejibun/logger";
|
|
3
3
|
import path from "path";
|
|
4
4
|
const configPath = path.resolve(__dirname, "config");
|
|
5
|
+
const regex = /\.(m?js|ts)$/;
|
|
5
6
|
const configs = Array.from(new Bun.Glob("**/*").scanSync({
|
|
6
7
|
cwd: configPath
|
|
7
|
-
}))
|
|
8
|
+
})).filter(value => (regex.test(value) &&
|
|
9
|
+
!value.endsWith(".d.ts")));
|
|
8
10
|
for (const config of configs) {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
+
const destination = config.replace(regex, ".ts");
|
|
12
|
+
await Bun.write(App.Path.configPath(destination), await Bun.file(path.resolve(configPath, config)).text());
|
|
13
|
+
Logger.setContext("CONFIGURE").info(`Copying ${config} into config/${destination}`);
|
|
11
14
|
}
|