@cypress/webpack-batteries-included-preprocessor

3.0.2 • Public • Published

Cypress Webpack Preprocessor (Batteries Included)

Cypress preprocessor for bundling JavaScript via webpack, with dependencies included and support for:

  • Various proposal-stage ES features
  • TypeScript
  • CoffeeScript

Why?

This preprocessor is a wrapper for @cypress/webpack-preprocessor. The webpack preprocessor does not include any extra dependencies (e.g. babel-loader, ts-loader), since most users will use their own webpack.config.js with it and already have the necessary dependencies installed. This preprocessor is for users who do not have those dependencies installed and would prefer not to configure the preprocessor to handle things like TypeScript and CoffeeScript.

Installation

Note that installing @cypress/webpack-preprocessor is also required. This allows you to update its version separately from this wrapper.

For webpack v5, use @cypress/webpack-batteries-included-preprocessor@3.x.x. For webpack v4, use @cypress/webpack-batteries-included-preprocessor@2.x.x.

npm install --save-dev @cypress/webpack-batteries-included-preprocessor @cypress/webpack-preprocessor

Usage

In your project's plugins file:

const webpackPreprocessor = require('@cypress/webpack-batteries-included-preprocessor')

module.exports = (on) => {
  on('file:preprocessor', webpackPreprocessor())
}

To enable TypeScript support, install TypeScript (if not already installed in your project npm install --save-dev typescript) and provide its location with the typescript option:

const webpackPreprocessor = require('@cypress/webpack-batteries-included-preprocessor')

module.exports = (on) => {
  on('file:preprocessor', webpackPreprocessor({
    typescript: require.resolve('typescript')
  }))
}

Other than the typescript option, this preprocessor supports the same options as @cypress/webpack-preprocessor, so see its README for more information.

Contributing

Use the version of Node that matches Cypress.

Run the tests:

yarn test

License

This project is licensed under the terms of the MIT license.

Changelog

Changelog

Package Sidebar

Install

npm i @cypress/webpack-batteries-included-preprocessor

Weekly Downloads

26,743

Version

3.0.2

License

MIT

Unpacked Size

14 kB

Total Files

4

Last publish

Collaborators

  • cypress-npm-publisher