Giter Club home page Giter Club logo

laravel-elixir-aglio's Introduction

laravel-elixir-aglio

This is a wrapper around gulp-aglio for Laravel Elixir.

Install

npm install --save-dev laravel-elixir-aglio

Usage

Example Gulpfile:

var elixir = require('laravel-elixir');

require('laravel-elixir-aglio');

elixir(function(mix) {
   mix.aglio();
});

Src

This will scan your resources/assets/_md/ directory for all files. Instead you can choose a custom location:

mix.aglio("markdown/*.md");

This will scan your resources/assets/markdown directory for .md files.

For overriding the resources/assets part, create a elixir.json and change the assetsDir (do not forget the trailing slash):

{
    "assetsDir":    "resources/assets/"
}

Output

This will output the processed files to resources/views/blueprint. If you'd like to output folder within resource/views to a different directory then you may override this as well:

mix.aglio(
    "markdown/*.md",
    "blueprint"
);

For overriding the resources/views part, create a elixir.json and change the outputDir (do not forget the trailing slash):

{
    "outputDir":    "resources/views/"
}

Options

On the third argument you could pass gulp-aglio options and a different extension (the default one is php).

mix.aglio(
    '_md/*.md',
    'blueprint',
    {
        template: 'default',
        extension: '.blade.php'
    }
);

Laravel

Route::get('/blueprint/api', function () {
   return View::make('blueprint.api') 
});

License

Laravel Elixir Aglio is open-sourced software licensed under the MIT license

laravel-elixir-aglio's People

Contributors

joaoffm avatar lambik avatar

Watchers

Sascha avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.