rollup-plugin-conditional-compilation 1.0.1 → 1.0.2
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/dist/index.d.ts +1 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -10,13 +10,12 @@ interface RollupConditionalCompilationOptions {
|
|
|
10
10
|
* ## About
|
|
11
11
|
* @package
|
|
12
12
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
13
|
-
* @version
|
|
13
|
+
* @version 1.0.2 (Last Update: 2025.10.08 00:26:45.941)
|
|
14
14
|
* @license MIT
|
|
15
15
|
* @link https://github.com/baendlorel/rollup-plugin-conditional-compilation
|
|
16
16
|
* @link https://baendlorel.github.io/ Welcome to my site!
|
|
17
17
|
* @description Conditional Compilation macros like #if #endif in C++.
|
|
18
18
|
* @copyright Copyright (c) 2025 Kasukabe Tsumugi. All rights reserved.
|
|
19
|
-
*
|
|
20
19
|
*/
|
|
21
20
|
declare function conditionalCompilation(options?: Partial<RollupConditionalCompilationOptions>): Plugin;
|
|
22
21
|
|