@kubb/core 4.33.4 → 4.33.5
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 -0
- package/dist/index.cjs +1 -15
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +6 -3
- package/dist/index.js +1 -15
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/config.ts +7 -3
- package/src/index.ts +1 -1
- package/src/utils/getConfigs.ts +2 -2
package/README.md
CHANGED
|
@@ -141,6 +141,7 @@ Kubb is an open source project with its ongoing development made possible entire
|
|
|
141
141
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/skoropadas"><img src="https://avatars.githubusercontent.com/u/20700969?v=4?s=100" width="100px;" alt="Alex Skoropad"/><br /><sub><b>Alex Skoropad</b></sub></a><br /><a href="https://github.com/kubb-labs/kubb/commits?author=skoropadas" title="Code">💻</a></td>
|
|
142
142
|
<td align="center" valign="top" width="14.28%"><a href="https://pateljay.io"><img src="https://avatars.githubusercontent.com/u/36803168?v=4?s=100" width="100px;" alt="Jay Patel"/><br /><sub><b>Jay Patel</b></sub></a><br /><a href="https://github.com/kubb-labs/kubb/commits?author=jay-babu" title="Code">💻</a></td>
|
|
143
143
|
<td align="center" valign="top" width="14.28%"><a href="https://hamzamihaidaniel.com"><img src="https://avatars.githubusercontent.com/u/12731515?v=4?s=100" width="100px;" alt="Hamza Mihai Daniel"/><br /><sub><b>Hamza Mihai Daniel</b></sub></a><br /><a href="https://github.com/kubb-labs/kubb/commits?author=hamzamihaidanielx" title="Code">💻</a></td>
|
|
144
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/saschabuehrle"><img src="https://avatars.githubusercontent.com/u/47737812?v=4?s=100" width="100px;" alt="Sascha Buehrle"/><br /><sub><b>Sascha Buehrle</b></sub></a><br /><a href="https://github.com/kubb-labs/kubb/commits?author=saschabuehrle" title="Code">💻</a></td>
|
|
144
145
|
</tr>
|
|
145
146
|
</tbody>
|
|
146
147
|
</table>
|
package/dist/index.cjs
CHANGED
|
@@ -661,20 +661,6 @@ var URLPath = class {
|
|
|
661
661
|
};
|
|
662
662
|
//#endregion
|
|
663
663
|
//#region src/config.ts
|
|
664
|
-
/**
|
|
665
|
-
* Helper for defining a Kubb configuration.
|
|
666
|
-
*
|
|
667
|
-
* Accepts either:
|
|
668
|
-
* - A config object or array of configs
|
|
669
|
-
* - A function returning the config(s), optionally async,
|
|
670
|
-
* receiving the CLI options as argument
|
|
671
|
-
*
|
|
672
|
-
* @example
|
|
673
|
-
* export default defineConfig(({ logLevel }) => ({
|
|
674
|
-
* root: 'src',
|
|
675
|
-
* plugins: [myPlugin()],
|
|
676
|
-
* }))
|
|
677
|
-
*/
|
|
678
664
|
function defineConfig(config) {
|
|
679
665
|
return config;
|
|
680
666
|
}
|
|
@@ -1315,7 +1301,7 @@ var PluginManager = class {
|
|
|
1315
1301
|
};
|
|
1316
1302
|
//#endregion
|
|
1317
1303
|
//#region package.json
|
|
1318
|
-
var version = "4.33.
|
|
1304
|
+
var version = "4.33.5";
|
|
1319
1305
|
//#endregion
|
|
1320
1306
|
//#region src/utils/diagnostics.ts
|
|
1321
1307
|
/**
|