Skip to content

rsify/figify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

figify stability

fig.js browserify transform

npm travis

introduction

Unlike some other ehm... good frameworks, all components in fig have to be compiled in order for fig.js to digest them correctly. This limitation is posed due to the fact that packing the whole pug library into a browser package is damn non-sensical considering how much it weights by itself (minified or not), increasing the size of fig.js by two orders of magnitude (rough estimate). If you already know how to use browserify, just use figify as a transform.

Figify attempts to transform all files you require in your app that end in .pug or .fig into modules that export a compiled fig component.

usage

cli

browserify <input> -t figify -o <output>

api

const browserify = require('browserify')
const figify = require('figify')

const b = browserify('main.js')
b.transform(figify)

b.bundle().pipe(process.stdout)

install

npm install figify --save

license

MIT

related

About

browserify transform for fig framework

Resources

License

Stars

Watchers

Forks

Packages

No packages published