Code Monkey home page Code Monkey logo

grunt-spm-build's Introduction

grunt-spm-build

grunt tasks collection for spm build.

Getting Started

If you haven't used [grunt][] before, be sure to check out the [Getting Started][] guide.

Here are some tips to make things happen.

Install grunt-cli:

$ npm install grunt-cli -g

Collection

This is a collection of these tasks:

Build Process

Understanding the build process. Take javascript as the example:

transport

Transport the writable module into full stack module.

Before transport:

define(function(require, exports, module) {
    var jquery = require('jquery');
    var foo = require('./foo');
    module.exports = doSomething;
});

After transport:

define('family/name/version/name', ['jquery/jquery/1.7.2/jquery', './foo'], function(require, exports, module) {
    var jquery = require('jquery/jquery/1.7.2/jquery');
    var foo = require('./foo');
    module.exports = doSomething;
});

concat

Concatenate relative dependencies. The js file will contain every relative dependencies:

define('....', ['...', './foo'], function(require, exports, module) {
    // ....
    var foo = require('./foo');
    // ....
});

define('.../foo', [], function(require, exports, module) {
    // ....
});

minify

We can use uglify to compress the code.

Config

This collection has a built-in config system, it will generate a config for you. That means you can set your Gruntfile.js as:

grunt.initConfig({
  // your other configs
})

var init = require('grunt-spm-build').initConfig
init(grunt, {pkg: 'package.json'})

grunt.loadNpmTasks('grunt-spm-build')

grunt.registerTask('default', ['spm-build'])

Changelog

2013-03-22 0.2.0b1

The beta version.

grunt-spm-build's People

Contributors

edokeh avatar

Watchers

 avatar  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.