Skip to content

Commit

Permalink
fix gulp config
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanwoulfe committed Jan 26, 2023
1 parent 271a2a4 commit 8c6693a
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/Preflight/Backoffice/gulp/config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
const backofficePath = './app';

// temp => include UI component from Workflow.Core.LicensesValidation.Client

function getOutputPath() {
var argv = require('minimist')(process.argv.slice(2));

Expand All @@ -14,14 +12,11 @@ function getOutputPath() {
}

export const paths = {
js: [`${backofficePath}/**/*.ts`, `../Umbraco.Workflow.Core/LicenseValidation/Client/src/**/*.ts`, `!${backofficePath}/**/offline/**/*.ts`],
offline: [`${backofficePath}/**/offline/**/*.ts`, `!${backofficePath}/**/offline/offline.loader.ts`],
offlineLoader: `${backofficePath}/**/offline/offline.loader.ts`,
js: [`${backofficePath}/**/*.ts`,],
viewsDev: [`${backofficePath}/**/*.html`],
viewsProd: [`${backofficePath}/**/*.html`, `!${backofficePath}/**/components/**/*.html`],
scss: `${backofficePath}/**/*.scss`,
lang: `${backofficePath}/Lang/*.xml`,
manifest: `${backofficePath}/**/package.manifest`,
dest: getOutputPath()
};

Expand Down

0 comments on commit 8c6693a

Please sign in to comment.