0.4.1 • Published 5 years ago

grunt-nette-basepath v0.4.1

Weekly downloads
20
License
-
Repository
github
Last release
5 years ago

grunt-nette-basepath

Grunt plugin to updates paths for concat, uglify and cssmin where is nette variable $basePath

Getting Started

This plugin requires Grunt ^1.0.0 and use-min ^2.4.0

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-nette-basepath --save-dev

One the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-nette-basepath');

The "netteBasePath" task

Overview

In your project's Gruntfile, add a section named netteBasePath to the data object passed into grunt.initConfig().

full example on github.com/chemix/Nette-Grunt

grunt.initConfig({
  ...
  netteBasePath: {
    task: {
      basePath: 'www',
      options: {
        removeFromPath: ['app/templates/']
      }
    }
  },
  ...
})
  ...
  netteBasePath:
    task:
      basePath: 'www'
      options:
        removeFromPath: ['app/template/']
  ...

Multiple replacements

  ...
  netteBasePath:
    taskCore:
      basePath: 'www'
      options:
        removeFromPath: ['app/template/']
    taskLibs:
      basePath: 'www/components'
      options:
        searchPattern: '{$incPath}'
  ...

Release History

  • 0.4.0: use "/" as folder separator for all OS in configuration
  • 0.3.0: Support for another replace path search string, multiple replaces
  • 0.2.0: Update for grunt-usemin 2.1.0
  • 0.1.0: Initial release
0.4.1

5 years ago

0.4.0

5 years ago

0.3.1

10 years ago

0.3.0

10 years ago

0.2.2

10 years ago

0.2.1

10 years ago

0.2.0

10 years ago

0.1.0

11 years ago