We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cd464c commit c9ce626Copy full SHA for c9ce626
build/Build.cfc
@@ -12,6 +12,7 @@ component {
12
variables.cwd = getCWD().reReplace( "\.$", "" );
13
variables.artifactsDir = cwd & "/.artifacts";
14
variables.buildDir = cwd & "/.tmp";
15
+ variables.apidDocsDir = variables.buildDir & "/apidocs";
16
variables.apiDocsURL = "http://localhost:60299/apidocs/";
17
variables.testRunner = "http://localhost:60299/tests/runner.cfm";
18
@@ -31,7 +32,8 @@ component {
31
32
// Cleanup + Init Build Directories
33
[
34
variables.buildDir,
- variables.artifactsDir
35
+ variables.artifactsDir,
36
+ variables.apidDocsDir
37
].each( function( item ){
38
if ( directoryExists( item ) ) {
39
directoryDelete( item, true );
0 commit comments