@fictjs/compiler 0.17.0 → 0.17.1
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 -0
- package/dist/index.cjs +2652 -894
- package/dist/index.d.cts +16 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.js +2652 -894
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -9,13 +9,17 @@ Babel plugin for Fict Compiler
|
|
|
9
9
|
## Usage
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
+
npm install fict
|
|
12
13
|
npm install -D @fictjs/compiler
|
|
13
14
|
# or
|
|
15
|
+
yarn add fict
|
|
14
16
|
yarn add -D @fictjs/compiler
|
|
15
17
|
```
|
|
16
18
|
|
|
17
19
|
You can visit [Fict](https://github.com/fictjs/fict) for more documentation.
|
|
18
20
|
|
|
21
|
+
For typical apps, install `fict` as the runtime dependency and let compiler output target the same package family. Direct `@fictjs/runtime` usage remains supported for lower-level integrations, but your source imports should stay on one package family.
|
|
22
|
+
|
|
19
23
|
## Options
|
|
20
24
|
|
|
21
25
|
```ts
|