UNPKG

sense-extension-recipes

Version:

Recipes on working with Qlik Sense Visualization Extensions.

55 lines (47 loc) 1.97 kB
# ------------------------------------------------------------------- # General Settings # ------------------------------------------------------------------- general: # Path to the extension directory in Qlik Sense Desktop LocalExtensionPath: "d:\\Documents\\Qlik\\Sense\\Extensions" # Name of the Extension as defined in the generator ExtensionName: "RequireJS CSS Plugin" # Name of the Extension, safe to be used for file-names ExtensionNameSafe: "RequireJSCSSPlugin" # Namespace ExtensionNamespace: "qsSample-" # Description of the Extension as defined in the generator ExtensionDescription: "Example how to use the requireJS CSS plugin." # Version of the extension, will be re-used in several areas, # e.g the generated .zip-file in the 'release' Grunt-task Version: "0.0.1" # ------------------------------------------------------------------- # Settings for the 'dev' Grunt task # ------------------------------------------------------------------- dev: less: # Documentation: https://github.com/gruntjs/grunt-contrib-less lessCompress: false lessYuiCompress: false lessCleanCss: false lessOptimization: 2 uglify: # Documentation: https://github.com/gruntjs/grunt-contrib-uglify mangle: false drop_console: false beautify: true preserveCommments: true compress: false # ------------------------------------------------------------------- # Settings for the 'release' Grunt task # ------------------------------------------------------------------- release: less: # Documentation: https://github.com/gruntjs/grunt-contrib-less lessCompress: true lessYuiCompress: true lessCleanCss: true lessOptimization: 2 uglify: # Documentation: https://github.com/gruntjs/grunt-contrib-uglify mangle: true drop_console: true beautify: false preserveCommments: false compress: true