Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the post-smtp domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/develop.tangible.one/htdocs/wp-includes/functions.php on line 6121
Develop

Develop


Tangible Roller

Build project assets using Rollup and ESBuild

The purpose of this tool is to compile a set of JavaScript/TypeScript, Sass, HTML and other files into minified bundles with source maps.

Source code

https://bitbucket.org/tangibleinc/roller

Requirement

Node.js version 12 or higher is required.

Install

Install in your project as a dependency for development.

npm install --save-dev @tangible/roller

This provides a local command called roll, which can be run using npm or npx.

Scripts

Add the following NPM scripts in your project's package.json file.

{
  "scripts": {
    "dev": "roll dev",
    "build": "roll build",
    "format": "roll format"
  }
}

These can be run from the terminal when you're inside the project folder.

Usage

Build for development and watch files for changes

npm run dev

Build for production

npm run build

Format files to code standard

npm run format

Other commands

Use npx, which is bundled with Node.js, to run other builder commands.

npx roll [command]

Run the above without any command to see a help screen.

Project directory

Optionally specify a child directory as project root

npm run [command] [folder]
npx roll [command] [folder]

The "build" and "format" commands support multiple projects.

npm run build [...folders]
npm run format [...folders]

Config

Before starting, the builder needs a configuration file.

Create a file called tangible.config.js in your project folder.

Example:

module.exports = {
  build: [
    {
      src: 'src/index.js',
      dest: 'build/app.min.js'
    },
    {
      src: 'src/index.scss',
      dest: 'build/app.min.css'
    },
  ],
  format: 'src'
}

The config file exports an object with the following properties.

Build

The required config property build is an array of tasks.

Each task is an object with the following properties:

During development, the source files are watched for any changes, and rebuilt as needed.

React mode

Files with React JSX syntax must have extension jsx or tsx. They will automatically import React.

The optional task property react sets the React mode.

Its value is one of:

Aliases

The following optional task properties perform various substitutions.

HTML

HTML files are compiled using a template engine called eta. Visit the link for its documentation.

For the HTML build task, the src property can be a single file name or glob syntax for multiple files. In the latter case, the dest property must specify the destination directory name. (It can be also for single file.)

Serve

If an optional config property serve is defined, a static file server is started during the dev and serve command.

It is an object with:

To start your own server, define the node property.

This can be used with or without the dir property.

Format

Run the format command to automatically format files to code standard.

It requires the config property format, which is a string or an array of path patterns to match.

Use * as wildcard, ** to match any directory levels, and ! to exclude pattern. Use {} and a comma-separated list to match multiple items.

Folders named node_modules and vendor are excluded by default.

Example: All files in directory

format: 'src'

Example: Plugin

format: [
  'assets',
  '!assets/build',
  '**/*.php',
  '!test'
]

Comparison with Tangible Builder

Tangible Roller is the next generation of the build tool. It's much faster, and better compatible with Node.js version 12 and above.

The configuration schema in tangible.config.js is almost the same, except: