rollup-plugin-conditional-compilation 1.0.2 → 1.0.3
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 +3 -3
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -13,12 +13,12 @@ console.log('user', userData); // when DEBUG is false, this line will be removed
|
|
|
13
13
|
|
|
14
14
|
> **Note**: You should modify the plugin options to ensure **NOT to strip comments so quickly**, since we work with them. For example, with `@rollup/plugin-typescript`, set `removeComments: false`.
|
|
15
15
|
|
|
16
|
-
**More Rollup
|
|
16
|
+
**More Rollup Plugins** you might be interested in:
|
|
17
17
|
|
|
18
|
+
- [rollup-plugin-conditional-compilation](https://www.npmjs.com/package/rollup-plugin-conditional-compilation): Use directives like `// #if`, `// #else` to do the conditional compilation like C++.
|
|
18
19
|
- [rollup-plugin-const-enum](https://www.npmjs.com/package/rollup-plugin-const-enum): inline your `const enum XXX { ... }` definitions at compile time.
|
|
19
20
|
- [rollup-plugin-func-macro](https://www.npmjs.com/package/rollup-plugin-func-macro): replace `__func__` by function name of current block, and `__file__` by file name at compile time.
|
|
20
|
-
|
|
21
|
-
For more awesome packages, check out [my homepage💛](https://baendlorel.github.io/?repoType=npm)
|
|
21
|
+
For more awesome packages, check out [my homepage💛](https://baendlorel.github.io/?repoType=npm)
|
|
22
22
|
|
|
23
23
|
## Installation
|
|
24
24
|
|
package/dist/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ interface RollupConditionalCompilationOptions {
|
|
|
10
10
|
* ## About
|
|
11
11
|
* @package
|
|
12
12
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
13
|
-
* @version 1.0.
|
|
13
|
+
* @version 1.0.3 (Last Update: 2025.10.08 07:40:36.735)
|
|
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!
|