rollup-plugin-conditional-compilation 0.0.1 → 0.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 +4 -6
- package/dist/index.cjs +1 -6419
- package/dist/index.d.ts +1 -25
- package/dist/index.mjs +1 -6417
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,15 +7,13 @@ A simple plugin that allows you to include or exclude code blocks based on compi
|
|
|
7
7
|
|
|
8
8
|
> **Note**: This plugin is a simplified version that only supports `#if` and `#endif` for now. Supports for `#else`, `#elif` will be added in future releases.
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
**More Rollup plugins** you might be interested in:
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
**More rollup plugins** you might be interested in:
|
|
15
|
-
|
|
16
|
-
- [rollup-plugin-conditional-compilation](https://www.npmjs.com/package/rollup-plugin-conditional-compilation): inline your `const enum XXX { ... }` definitions at compile time.
|
|
12
|
+
- [rollup-plugin-const-enum](https://www.npmjs.com/package/rollup-plugin-const-enum): inline your `const enum XXX { ... }` definitions at compile time.
|
|
17
13
|
- [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.
|
|
18
14
|
|
|
15
|
+
For more awesome packages, check out [my homepage💛](https://baendlorel.github.io/?repoType=npm)
|
|
16
|
+
|
|
19
17
|
## Installation
|
|
20
18
|
|
|
21
19
|
```bash
|