Skip to content

Commit

Permalink
[FEATURE] replaceVersion/Copyright: Also process test-resources
Browse files Browse the repository at this point in the history
JIRA: CPOUI5FOUNDATION-424
  • Loading branch information
matz3 committed Jan 24, 2022
1 parent 50e2c7c commit 507da37
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/types/library/LibraryBuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class LibraryBuilder extends AbstractBuilder {
workspace: resourceCollections.workspace,
options: {
copyright: project.metadata.copyright,
pattern: "/resources/**/*.{js,library,less,theme}"
pattern: "/**/*.{js,library,less,theme}"
}
});
});
Expand All @@ -38,7 +38,7 @@ class LibraryBuilder extends AbstractBuilder {
workspace: resourceCollections.workspace,
options: {
version: project.version,
pattern: "/resources/**/*.{js,json,library,less,theme}"
pattern: "/**/*.{js,json,library,less,theme}"
}
});
});
Expand Down
4 changes: 2 additions & 2 deletions lib/types/themeLibrary/ThemeLibraryBuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class ThemeLibraryBuilder extends AbstractBuilder {
workspace: resourceCollections.workspace,
options: {
copyright: project.metadata.copyright,
pattern: "/resources/**/*.{less,theme}"
pattern: "/**/*.{less,theme}"
}
});
});
Expand All @@ -18,7 +18,7 @@ class ThemeLibraryBuilder extends AbstractBuilder {
workspace: resourceCollections.workspace,
options: {
version: project.version,
pattern: "/resources/**/*.{less,theme}"
pattern: "/**/*.{less,theme}"
}
});
});
Expand Down

0 comments on commit 507da37

Please sign in to comment.