Skip to content

Commit

Permalink
### Added
Browse files Browse the repository at this point in the history
- Visualizer template missing.

### Fixed

- Overgreedy ignore, missing the `tests` folder in the final package
  • Loading branch information
lmajano committed Sep 23, 2024
1 parent 358a2d4 commit f81fe5b
Show file tree
Hide file tree
Showing 7 changed files with 9,808 additions and 5 deletions.
2 changes: 1 addition & 1 deletion box.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"ignore":[
"**/.*",
"build/*",
"tests"
"./tests/**"
],
"scripts":{
"build:module":"task run taskFile=build/Build.cfc :projectName=`package show slug` :version=`package show version`",
Expand Down
8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- Visualizer template missing.

### Fixed

- Overgreedy ignore, missing the `tests` folder in the final package

## [1.5.0] - 2024-09-17

### Added
Expand Down
5 changes: 1 addition & 4 deletions commands/testbox/generate/visualizer.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,13 @@ component extends="testboxCLI.models.BaseCommand" {
// This will make each directory canonical and absolute
arguments.directory = resolvePath( arguments.directory & "/tests/test-visualizer" );

// Make sure we have the latest TestBox for assets
ensureTestBox( false );

// Validate directory
if ( !directoryExists( arguments.directory ) ) {
directoryCreate( arguments.directory );

// Copy template
directoryCopy(
expandPath( "/testbox/test-visualizer" ),
"#variables.settings.templatesPath#/visualizer/",
arguments.directory,
true
);
Expand Down
Loading

0 comments on commit f81fe5b

Please sign in to comment.