Skip to content

Repository files navigation

Vite Plugin Strip Code test workflow

The vite-plugin-strip-code strips marked blocks from any type of code.

Install

# NPM
npm install --save-dev vite-plugin-strip-code
# Yarn
yarn add --dev vite-plugin-strip-code

Modes

By default, the plugin strips blocks in all modes except the development. Use the skipModes option to disable stripping blocks in specific modes.

Options

skipNodeModules is a boolean that defines whether to skip processing of the node_modules folder. The ignoreNodeModules option is deprecated and should no longer be u'sed.

skipModes is an array of modes where to disable blocks stripping.

blocks is an array of blocks' representations. Each element of this array describes a unique pair of tags. Pairs can be defined as a string or an object with different properties. For more information about blocks values and how to use them, please refer to the strip-code plugin.

name: 'name'            # string defines a name for a pair of tags - required if defined by a name
separator: '-'          # string defines a separator between a name and a position - optional
start: 'dev-start'      # string defines a name for the start tag (unique) - required if defined by start/end
end: 'dev-end'          # string defines a name for the end tag (unique) - required if defined by start/end
prefix: '/*'            # string defines the beginning of a tag (non-empty string) - optional
suffix: '*/'            # string defines the end of a tag (can be an empty string) - optional
replacement: 'any'      # string defines a substitution for a removed block - optional

The plugin supports zero config. When no options are provided, it uses default start, end, prefix and suffix values.

Usage example

Imagine you want to strip debug information and non-production code from this sample (already marked by special paired comments).

function makeFoo(bar, baz) {
    /* debug-start */ console.log('creating Foo'); /* debug-end */
    // development_start
    if (bar instanceof Bar !== true) {
        throw new Error('makeFoo: bar param must be an instance of Bar');
    }
    // development_end
    // devteam2:open
    if (baz instanceof Baz !== true) {
        throw new Error('makeFoo: baz param must be an instance of Baz');
    }
    // devteam2:close
    // This code will remain
    return new Foo(bar, baz);
}

The plugin strips blocks of code marked with a pair of tags (a block). A block is defined as a string or an object with the properties described in "Options" above. Let's define different pairs of tags (blocks) in the configuration:

// vite.config.js 
import {defineConfig} from 'vite';
import StripCode from 'vite-plugin-strip-code';

export default defineConfig({
  plugins: [
    StripCode({
      blocks: [
        'debug',
        {
          name: 'development',
          separator: '_',
          prefix: '//',
          suffix: '',
        },
        {
          start: 'devteam2:open',
          end: 'devteam2:close',
          prefix: '//',
          suffix: '',
        }
      ],
    }),
  ],
})

After the building process, the marked blocks will be completely removed from code.

function makeFoo(bar, baz) {
    // This code will remain
    return new Foo(bar, baz);
}

License

The MIT License (MIT). Please see the License file for more information.

About

A vite plugin that strips marked blocks from any code processed by vite.

Topics

Resources

Stars

5 stars

Watchers

1 watching

Forks

Releases

Used by

Contributors

Languages