Skip to content

mockee/istatic

Folders and files

NameName
Last commit message
Last commit date

Latest commit

1cd91a4 · Jun 18, 2013

History

69 Commits
Jan 5, 2013
Oct 16, 2012
Feb 21, 2013
Jun 18, 2013
Jun 18, 2013

Repository files navigation

Build Status

iStatic

Static File Manager

Installation

$ npm install node-istatic -g

Usage

Put a file named static.yaml (refer to the following Configuration) at the root of your project repository. And then, run:

$ istatic pull

Configuration

You can specify any git hosting provider, such as:

hostDict:
  code: http://code.dapps.douban.com/
  gitcafe: git://gitcafe.com/

Note: iStatic has been added github, bitbucket and local by default.

Specify the git repos info (including name, host, tag or commit) and the path of the files or directories you need. The default host is github, and the default commit (or tag) is origin/master. These two properties can be omitted. But you need to specify one file mapping (origin: target) at least. It sounds to be a little complicated, here's a example:

repos:
  arkui:
    host: code
    file:
      ./stylus: ./public/css/arkui/
      ./pics: ./public/pics/

  dexteryy/OzJS:
    tag: 2.5.1
    file:
      ./oz.js: ./public/js/lib/
      ./eventMaster/eventmaster.js: ./public/js/lib/mod/event.js

  /Users/mockee/M3:
    host: local
    commit: 7827c7c605
    file:
      ./define.js: ./public/js/lib/
      ./mod/touch.js: ./public/js/mod/

Grunt task

Grunt-istatic task now available.

Release History

  • 2013-02-22 - v0.3.1 - Support async callback for grunt-istatic.
  • 2013-02-07 - v0.2.7 - Support local git repos. Format logs. Add --version & clear options.
  • 2012-12-06 - v0.2.5 - Bugfix for pulldown && checking local files modification.

License

Copyright (c) 2013 mockee Licensed under the MIT license.