Skip to content

Remove files from your UI5 build, including those generated by standard tasks.

License

Notifications You must be signed in to change notification settings

thalesvb/ui5-task-nuke

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nuke files during UI5 build process

Ahhh... much better.

Normally you exclude resources files from build process with resources\excludes rule, but that applies to your own project files, not the ones generated by build process itself.

This task let you tell builder which files it should not write to output directory on build. It should be the last task processed on build chain.

Parental advisory: misconfiguration can lead to broken UI5 builds (ie.: runtime errors when you deploy the resulting project). Use it at your own discretion.

Configuration options

  • nukes: a glob string or an array of glob strings to identify files that should be nuked from output directory.

The glob expressions accepted are the same ones that @ui5/fs.DuplexCollection.byGlob accepts. It relies on implementation that UI5 builder uses for glob handling.

Usage

  1. Add it to your project development dependencies (either manually or through package managers) and also on ui5 dependencies on package.json.
"devDependencies": {
  "@thalesvb/ui5-task-nuke": "<version>"
},
"ui5": {
  "dependencies": [
    "@thalesvb/ui5-task-nuke"
  ]
}
  1. Configure it on your ui5.yaml under builder \ customTasks section. The task is named thalesvb/nuke.

Example

A Component-preload.js only build would likely be achieved by:

builder:
  customTasks:
    - name: thalesvb/nuke
      afterTask: generateVersionInfo
      configuration:
        nukes:
          - "**/*.properties"
          - "**/*.xml"
          - "**/*.js"
          - "!**/Component-preload.js"

About

Remove files from your UI5 build, including those generated by standard tasks.

Topics

Resources

License

Stars

Watchers

Forks