https://github.com/johanholmerin/rollup-plugin-dss
Rollup plugin for DSS
https://github.com/johanholmerin/rollup-plugin-dss
Last synced: 2 months ago
JSON representation
Rollup plugin for DSS
- Host: GitHub
- URL: https://github.com/johanholmerin/rollup-plugin-dss
- Owner: johanholmerin
- License: mit
- Created: 2019-02-02T16:04:21.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-08-06T14:02:00.000Z (almost 6 years ago)
- Last Synced: 2025-02-02T17:38:44.372Z (4 months ago)
- Language: JavaScript
- Size: 30.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rollup-plugin-dss
Rollup plugin for [DSS](https://dss-lang.com)
**Rollup version 1.19.0 or higher is required**
## Installation
```sh
yarn add -D git+https://github.com/johanholmerin/rollup-plugin-dss#semver:^0.1.0-beta.1
```## Usage
**rollup.config.js**
```javascript
import dss from 'rollup-plugin-dss';export default {
input: 'main.js',
output: {
dir: 'build',
format: 'es'
},
plugins: [
dss({
// Optional options
// fileName: unique name to for output file
// name: name to use for output.assetFileNames pattern
})
]
};
```