Skip to content

Commit

Permalink
chore: release v0.0.5
Browse files Browse the repository at this point in the history
* (bluefox) Added tools for admin: patchHtmlFile
  • Loading branch information
GermanBluefox committed Aug 29, 2024
1 parent c4307b2 commit 6364c22
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ And use in `package.json` `scripts`:
### **WORK IN PROGRESS**
-->
## Changelog
### **WORK IN PROGRESS**
### 0.0.5 (2024-08-29)
* (bluefox) Added tools for admin: patchHtmlFile

### 0.0.3 (2024-08-29)
Expand Down
8 changes: 7 additions & 1 deletion build/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@ export declare function deleteFoldersRecursive(
path: string,
/** List of exceptions */
exceptions?: string[]): void;
export declare function copyFiles(patterns: string[] | string, dest: string): void;
export declare function copyFiles(patterns: string[] | string, dest: string, options?: {
process?: (fileData: string) => string;
replace?: {
find: string | RegExp;
text: string;
}[];
}): void;
export declare function npmInstall(src: string, options?: {
/** Set to false if you want to execute without `--force` flag */
force?: boolean;
Expand Down
25 changes: 23 additions & 2 deletions build/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 6364c22

Please sign in to comment.