# webpack-dezel

> Dezel style (`.ds, .ds.ios, .ds.android`) loader and plugin.

Latest version **0.1.1** (published 2018-09-12) · ISC license · 0 weekly downloads

## Install

```sh
npm install webpack-dezel
pnpm add webpack-dezel
yarn add webpack-dezel
bun add webpack-dezel
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.1 |
| Published | 2018-09-12 |
| First published | 2018-09-12 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 4.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Maintainers | jpdery |

## Links

- npm: https://www.npmjs.com/package/webpack-dezel
- Repository: https://github.com/logaritmdev/webpack-dezel
- Issues: https://github.com/logaritmdev/webpack-dezel/issues
- npm.io page: https://npm.io/package/webpack-dezel

## Dependencies (2)

- [webpack](https://npm.io/package/webpack.md) ^4.18.0
- [webpack-sources](https://npm.io/package/webpack-sources.md) ^1.1.0

## Recent versions

- 0.1.1 (latest) — 2018-09-12
- 0.1.0 — 2018-09-12

## README

# Webpack Dezel

Dezel style (`.ds, .ds.ios, .ds.android`) loader and plugin.

## Usage

Follow the sample webpack config file below. The `ignore` option is optional,
but can be useful to exclude platform specific styles on from external
libraries. Each value in the `ignore` array must be a regular exception that
will be tested against the full path of the style file.

## Sample webpack.config.js

	const path = require('path')
	const DezelStylePlugin = require('webpack-dezel')

	module.exports = {

		// ...

		module: {

			rules: [

				// ...

				DezelStylePlugin.loader({
					ignore: [
						/\.ds\.ios$/,
						/\.ds\.android$/,
					]
				})
			]
		},

		plugins: [
			new DezelStylePlugin()
		]
	};


## Licence
MIT

---
_Source: https://npm.io/package/webpack-dezel · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
