@refrakt-md/eleventy 0.10.0 → 0.11.0
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/types.d.ts +5 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +5 -5
package/dist/types.d.ts
CHANGED
|
@@ -10,6 +10,11 @@ export type EleventyTheme = AdapterTheme;
|
|
|
10
10
|
export interface RefraktEleventyOptions {
|
|
11
11
|
/** Path to refrakt.config.json (default: './refrakt.config.json') */
|
|
12
12
|
configPath?: string;
|
|
13
|
+
/** Which site to use from the config. Reserved for forward compatibility —
|
|
14
|
+
* the current Eleventy plugin is configured directly via `createDataFile`
|
|
15
|
+
* rather than reading from `refrakt.config.json`, so this option is
|
|
16
|
+
* accepted but currently unused. */
|
|
17
|
+
site?: string;
|
|
13
18
|
/** CSS files to passthrough copy (resolved from theme) */
|
|
14
19
|
cssFiles?: string[];
|
|
15
20
|
/** Path prefix for copied CSS (default: '/css') */
|
package/dist/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAE1D;;;;;GAKG;AACH,MAAM,MAAM,aAAa,GAAG,YAAY,CAAC;AAEzC,8CAA8C;AAC9C,MAAM,WAAW,sBAAsB;IACtC,qEAAqE;IACrE,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,0DAA0D;IAC1D,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,mDAAmD;IACnD,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,2DAA2D;IAC3D,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,iDAAiD;IACjD,QAAQ,CAAC,EAAE,MAAM,CAAC;CAClB"}
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAE1D;;;;;GAKG;AACH,MAAM,MAAM,aAAa,GAAG,YAAY,CAAC;AAEzC,8CAA8C;AAC9C,MAAM,WAAW,sBAAsB;IACtC,qEAAqE;IACrE,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;yCAGqC;IACrC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,0DAA0D;IAC1D,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,mDAAmD;IACnD,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,2DAA2D;IAC3D,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,iDAAiD;IACjD,QAAQ,CAAC,EAAE,MAAM,CAAC;CAClB"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@refrakt-md/eleventy",
|
|
3
3
|
"description": "Eleventy plugin for refrakt.md — render Markdoc runes in 11ty v3 projects",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.11.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"build": "tsc"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@refrakt-md/behaviors": "0.
|
|
34
|
-
"@refrakt-md/content": "0.
|
|
35
|
-
"@refrakt-md/transform": "0.
|
|
36
|
-
"@refrakt-md/types": "0.
|
|
33
|
+
"@refrakt-md/behaviors": "0.11.0",
|
|
34
|
+
"@refrakt-md/content": "0.11.0",
|
|
35
|
+
"@refrakt-md/transform": "0.11.0",
|
|
36
|
+
"@refrakt-md/types": "0.11.0"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"@11ty/eleventy": "^3.0.0"
|