Skip to content
/ Beeld Public

Beeld: scriptable, extendable and configurable source code builder framework (node.js / php / python platforms)

Notifications You must be signed in to change notification settings

foo123/Beeld

Repository files navigation

Beeld

A scriptable, extendable and configurable source code builder framework and tool in JavaScript / Python / PHP

version 1.0.3

beeld is a bee that builds flowers

This is a new framework and tool for building projects from sources, which is based on (and extends) the previous buildtools used here

Usage

  • Modify the beeld-sample.config or beeld-sample.json or beeld-sample.yaml or beeld-sample.ini file(s) to include the configuration settings and parameters
  • Configuration file can be in custom config format (default), JSON format (.json) or YAML format (.yaml, .yml) or INI format (.ini)
  • Run the .bat or .sh scripts to build the package

Each tool/compiler, if run with no parameters in the command-line, will print a help screen explaining usage options. Also the sample-config files and build.bat, build.sh files, demonstrate how the build tools are used

Plugins, Extensions, Scripting, Custom Dynamic Expressions

The framework can be extended by plugins. The plugin code can be in the Beeld/plugins folder or even in current working directory. Each plugin can define a new action to be used on the source data through a pipeline.

The plugin and the new action are both defined in each config file (see sample config files).

Furthermore the framework has a built-in "replace" action to replace text in sources and a "process-shell" action which allows to manipulate the source data through direct shell scripting (for example for some fast shell text manipulation)

NEW in version 0.8+

The framework allows custom powerfull dynamic expressions (and regular expressions) to be part of config data and parameters, via the Xpresion framework. The beeld.config file can include a settings part which defines the prefixes for Xpresion dynamic expressions and Regular Expressions (if any) used in the config file. The parsing and evaluation will be automatic (see sample config files for examples). A common example of the use of custom expressions is the use of current date to be displayed in the final built file (one can use a custom expression for that which uses the date function as part of replace data to be replaced in the file where needed). Another one, is to replace data in the files not simply by another string but by the contents of a whole file (one would use an expression with the file function to load the contents of a file dynamicaly)

UMD Templates

Some UMD templates from the UMD github repo have been included as templates in the buildtools. A generic UMD module pattern wrapper that supports module dependencies and bundled module dependencies in same file and works transparently inside Node/CommonJS, requireJS/AMD, WebWorker/Browser, is in this gist and in this gist for single module wrapper (no dependencies)

Dependencies

  • UglifyJS (default), Java Closure Compiler (included), Java YUI Compressor (included), CSS Minifier (included) can be used

For Python

  • Python (2 or 3)
  • PyYaml module installed (for Yaml parsing)

For PHP

  • PHP 5.2+
  • Modified standalone version of Symfony Yaml parser by (c) Fabien Potencier fabien@symfony.com (included)

For Node.js

  • Node.js 0.8+
  • Modified standalone version of yaml.js (Symfony Yaml parser) by (c) Fabien Potencier, Jeremy Faivre (included)

Common Dependencies

  • UglifyJS package (required, global install)
  • Closure compiler (included)
  • YUI Compressor compiler (included)
  • Java 6 (required by YUI, Closure compilers)
  • CSS Minifier (python) (included)
  • CSS Minifier (php) (included)
  • CSS Minifier (node) (included)
  • Xpresion (python) (included)
  • Xpresion (php) (included)
  • Xpresion (node) (included)

NOTE: Only one of the three javascript minify compilers needs be used, but Beeld interfaces are provided for all three.