rollup 3.10.1 → 3.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/bin/rollup +2 -2
- package/dist/es/rollup.js +2 -2
- package/dist/es/shared/rollup.js +146 -93
- package/dist/es/shared/watch.js +2 -2
- package/dist/loadConfigFile.js +2 -2
- package/dist/rollup.d.ts +1 -0
- package/dist/rollup.js +2 -2
- package/dist/shared/index.js +2 -2
- package/dist/shared/loadConfigFile.js +9 -9
- package/dist/shared/rollup.js +161 -97
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch.js +2 -2
- package/package.json +22 -1
package/README.md
CHANGED
|
@@ -35,7 +35,7 @@ Rollup is a module bundler for JavaScript which compiles small pieces of code in
|
|
|
35
35
|
|
|
36
36
|
## Quick Start Guide
|
|
37
37
|
|
|
38
|
-
Install with `npm install --global rollup`. Rollup can be used either through a [command line interface](https://rollupjs.org
|
|
38
|
+
Install with `npm install --global rollup`. Rollup can be used either through a [command line interface](https://rollupjs.org/command-line-interface/) with an optional configuration file or else through its [JavaScript API](https://rollupjs.org/javascript-api/). Run `rollup --help` to see the available options and parameters. The starter project templates, [rollup-starter-lib](https://github.com/rollup/rollup-starter-lib) and [rollup-starter-app](https://github.com/rollup/rollup-starter-app), demonstrate common configuration options, and more detailed instructions are available throughout the [user guide](https://rollupjs.org/introduction/).
|
|
39
39
|
|
|
40
40
|
### Commands
|
|
41
41
|
|
package/dist/bin/rollup
CHANGED
package/dist/es/rollup.js
CHANGED