@elenajs/bundler 0.1.0 → 0.2.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/package.json +2 -2
- package/src/rollup-build.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elenajs/bundler",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Bundler for progressive web component libraries built with Elena.",
|
|
5
5
|
"author": "Elena <hi@elenajs.com>",
|
|
6
6
|
"homepage": "https://elenajs.com/",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"vitest": "4.0.18"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "91eb41114d32cfa09d11747f45db3805114b6706"
|
|
49
49
|
}
|
package/src/rollup-build.js
CHANGED
|
@@ -118,8 +118,8 @@ export function createRollupConfig(options = {}) {
|
|
|
118
118
|
/**
|
|
119
119
|
* Runs both Rollup build targets programmatically using the Rollup Node.js API.
|
|
120
120
|
*
|
|
121
|
-
* Note: the `output` key inside `RollupOptions` is ignored by the `rollup()` API
|
|
122
|
-
*
|
|
121
|
+
* Note: the `output` key inside `RollupOptions` is ignored by the `rollup()` API.
|
|
122
|
+
* Output options must be passed separately to `build.write()`.
|
|
123
123
|
*
|
|
124
124
|
* @param {import("./utils/load-config.js").ElenaConfig} config
|
|
125
125
|
* @returns {Promise<void>}
|