Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
b01b7d23df | |||
45c4472c53 | |||
337bee3272 | |||
709a67fe82 |
10
changelog.md
10
changelog.md
@ -1,5 +1,15 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2025-01-29 - 2.2.5 - fix(mod_assets)
|
||||||
|
Fix async handling in asset processing
|
||||||
|
|
||||||
|
- Ensured that the empty directory operation is awaited in the asset processing workflow.
|
||||||
|
|
||||||
|
## 2025-01-29 - 2.2.4 - fix(mod_assets)
|
||||||
|
Fix logging message in ensureAssetsDir to correctly state when directory is created
|
||||||
|
|
||||||
|
- Corrected logging output in ensureAssetsDir method to indicate directory creation.
|
||||||
|
|
||||||
## 2025-01-29 - 2.2.3 - fix(mod_assets)
|
## 2025-01-29 - 2.2.3 - fix(mod_assets)
|
||||||
Fix issue with asset directory copy
|
Fix issue with asset directory copy
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@git.zone/tsbundle",
|
"name": "@git.zone/tsbundle",
|
||||||
"version": "2.2.3",
|
"version": "2.2.5",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "a bundler using rollup for painless bundling of web projects",
|
"description": "a bundler using rollup for painless bundling of web projects",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@git.zone/tsbundle',
|
name: '@git.zone/tsbundle',
|
||||||
version: '2.2.3',
|
version: '2.2.5',
|
||||||
description: 'a bundler using rollup for painless bundling of web projects'
|
description: 'a bundler using rollup for painless bundling of web projects'
|
||||||
}
|
}
|
||||||
|
@ -8,8 +8,8 @@ export class AssetsHandler {
|
|||||||
public async ensureAssetsDir() {
|
public async ensureAssetsDir() {
|
||||||
const assetsDirExists = await plugins.smartfile.fs.isDirectory(this.defaultFromDirPath);
|
const assetsDirExists = await plugins.smartfile.fs.isDirectory(this.defaultFromDirPath);
|
||||||
if (!assetsDirExists) {
|
if (!assetsDirExists) {
|
||||||
console.log(`creating assets directory at ${this.defaultFromDirPath}`);
|
|
||||||
await plugins.smartfile.fs.ensureDir(this.defaultFromDirPath);
|
await plugins.smartfile.fs.ensureDir(this.defaultFromDirPath);
|
||||||
|
console.log(`created assets directory at ${this.defaultFromDirPath}`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -31,7 +31,7 @@ export class AssetsHandler {
|
|||||||
optionsArg.to = plugins.smartpath.transform.toAbsolute(optionsArg.to, paths.cwd) as string;
|
optionsArg.to = plugins.smartpath.transform.toAbsolute(optionsArg.to, paths.cwd) as string;
|
||||||
|
|
||||||
// lets clean theh target directory
|
// lets clean theh target directory
|
||||||
plugins.smartfile.fs.ensureEmptyDir(optionsArg.to);
|
await plugins.smartfile.fs.ensureEmptyDir(optionsArg.to);
|
||||||
|
|
||||||
plugins.smartfile.fs.copySync(optionsArg.from, optionsArg.to, {
|
plugins.smartfile.fs.copySync(optionsArg.from, optionsArg.to, {
|
||||||
replaceTargetDir: true,
|
replaceTargetDir: true,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user