Skip to content

Commit

Permalink
Disable example and thumbnail generation depending on NPM packages.
Browse files Browse the repository at this point in the history
  • Loading branch information
alantreadway committed Dec 18, 2023
1 parent 97586c3 commit d3218e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export function createTask(parentProject: string, srcRelativeInputPath: string)
return {
'generate-thumbnail': {
dependsOn,
inputs: [{ env: 'PUBLIC_PACKAGE_VERSION' }],
inputs: [{ env: 'PUBLIC_PACKAGE_VERSION' }, { externalDependencies: [] }],
executor: 'ag-charts-generate-chart-thumbnail:generate',
outputPath: '{options.outputPath}',
cache: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export function createTask(parentProject: string, srcRelativeInputPath: string)
'generate-example': {
dependsOn: [{ projects: 'ag-charts-generate-example-files', target: 'build' }],
executor: 'ag-charts-generate-example-files:generate',
inputs: ['{projectRoot}/**/*'],
inputs: ['{projectRoot}/**/*', { externalDependencies: [] }],
outputPath: '{options.outputPath}',
cache: true,
options: {
Expand Down

0 comments on commit d3218e8

Please sign in to comment.