@powerlines/plugin-content-collections 0.1.388 → 0.1.389
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.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/types/index.d.cts +2 -2
- package/dist/types/index.d.mts +2 -2
- package/dist/types/plugin.d.cts +1 -6
- package/dist/types/plugin.d.cts.map +1 -1
- package/dist/types/plugin.d.mts +1 -6
- package/dist/types/plugin.d.mts.map +1 -1
- package/package.json +9 -9
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { createEmitter } from "./helpers/create-emitter.cjs";
|
|
2
|
-
import { ContentCollectionsContext, ContentCollectionsPluginContext, ContentCollectionsPluginOptions, ContentCollectionsPluginResolvedConfig, ContentCollectionsPluginUserConfig
|
|
2
|
+
import { ContentCollectionsContext, ContentCollectionsPluginContext, ContentCollectionsPluginOptions, ContentCollectionsPluginResolvedConfig, ContentCollectionsPluginUserConfig } from "./types/plugin.cjs";
|
|
3
3
|
import { createWriter } from "./helpers/create-writer.cjs";
|
|
4
4
|
import { Plugin } from "powerlines";
|
|
5
5
|
|
|
@@ -17,5 +17,5 @@ declare module "powerlines" {
|
|
|
17
17
|
*/
|
|
18
18
|
declare const plugin: <TContext extends ContentCollectionsPluginContext = ContentCollectionsPluginContext>(options: ContentCollectionsPluginOptions) => Plugin<TContext>;
|
|
19
19
|
//#endregion
|
|
20
|
-
export { ContentCollectionsContext, ContentCollectionsPluginContext, ContentCollectionsPluginOptions, ContentCollectionsPluginResolvedConfig, ContentCollectionsPluginUserConfig,
|
|
20
|
+
export { ContentCollectionsContext, ContentCollectionsPluginContext, ContentCollectionsPluginOptions, ContentCollectionsPluginResolvedConfig, ContentCollectionsPluginUserConfig, createEmitter, createWriter, plugin as default, plugin };
|
|
21
21
|
//# sourceMappingURL=index.d.cts.map
|
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { createEmitter } from "./helpers/create-emitter.mjs";
|
|
2
|
-
import { ContentCollectionsContext, ContentCollectionsPluginContext, ContentCollectionsPluginOptions, ContentCollectionsPluginResolvedConfig, ContentCollectionsPluginUserConfig
|
|
2
|
+
import { ContentCollectionsContext, ContentCollectionsPluginContext, ContentCollectionsPluginOptions, ContentCollectionsPluginResolvedConfig, ContentCollectionsPluginUserConfig } from "./types/plugin.mjs";
|
|
3
3
|
import { createWriter } from "./helpers/create-writer.mjs";
|
|
4
4
|
import { Plugin } from "powerlines";
|
|
5
5
|
|
|
@@ -17,5 +17,5 @@ declare module "powerlines" {
|
|
|
17
17
|
*/
|
|
18
18
|
declare const plugin: <TContext extends ContentCollectionsPluginContext = ContentCollectionsPluginContext>(options: ContentCollectionsPluginOptions) => Plugin<TContext>;
|
|
19
19
|
//#endregion
|
|
20
|
-
export { ContentCollectionsContext, ContentCollectionsPluginContext, ContentCollectionsPluginOptions, ContentCollectionsPluginResolvedConfig, ContentCollectionsPluginUserConfig,
|
|
20
|
+
export { ContentCollectionsContext, ContentCollectionsPluginContext, ContentCollectionsPluginOptions, ContentCollectionsPluginResolvedConfig, ContentCollectionsPluginUserConfig, createEmitter, createWriter, plugin as default, plugin };
|
|
21
21
|
//# sourceMappingURL=index.d.mts.map
|
package/dist/types/index.d.cts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { ContentCollectionsContext, ContentCollectionsPluginContext, ContentCollectionsPluginOptions, ContentCollectionsPluginResolvedConfig, ContentCollectionsPluginUserConfig
|
|
2
|
-
export { ContentCollectionsContext, ContentCollectionsPluginContext, ContentCollectionsPluginOptions, ContentCollectionsPluginResolvedConfig, ContentCollectionsPluginUserConfig
|
|
1
|
+
import { ContentCollectionsContext, ContentCollectionsPluginContext, ContentCollectionsPluginOptions, ContentCollectionsPluginResolvedConfig, ContentCollectionsPluginUserConfig } from "./plugin.cjs";
|
|
2
|
+
export { ContentCollectionsContext, ContentCollectionsPluginContext, ContentCollectionsPluginOptions, ContentCollectionsPluginResolvedConfig, ContentCollectionsPluginUserConfig };
|
package/dist/types/index.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { ContentCollectionsContext, ContentCollectionsPluginContext, ContentCollectionsPluginOptions, ContentCollectionsPluginResolvedConfig, ContentCollectionsPluginUserConfig
|
|
2
|
-
export { ContentCollectionsContext, ContentCollectionsPluginContext, ContentCollectionsPluginOptions, ContentCollectionsPluginResolvedConfig, ContentCollectionsPluginUserConfig
|
|
1
|
+
import { ContentCollectionsContext, ContentCollectionsPluginContext, ContentCollectionsPluginOptions, ContentCollectionsPluginResolvedConfig, ContentCollectionsPluginUserConfig } from "./plugin.mjs";
|
|
2
|
+
export { ContentCollectionsContext, ContentCollectionsPluginContext, ContentCollectionsPluginOptions, ContentCollectionsPluginResolvedConfig, ContentCollectionsPluginUserConfig };
|
package/dist/types/plugin.d.cts
CHANGED
|
@@ -38,11 +38,6 @@ type ContentCollectionsPluginResolvedConfig = ResolvedConfig & {
|
|
|
38
38
|
type ContentCollectionsPluginContext<TResolvedConfig extends ContentCollectionsPluginResolvedConfig = ContentCollectionsPluginResolvedConfig> = PluginContext<TResolvedConfig> & {
|
|
39
39
|
contentCollections: ContentCollectionsContext;
|
|
40
40
|
};
|
|
41
|
-
declare type __ΩContentCollectionsContext = any[];
|
|
42
|
-
declare type __ΩContentCollectionsPluginOptions = any[];
|
|
43
|
-
declare type __ΩContentCollectionsPluginUserConfig = any[];
|
|
44
|
-
declare type __ΩContentCollectionsPluginResolvedConfig = any[];
|
|
45
|
-
declare type __ΩContentCollectionsPluginContext = any[];
|
|
46
41
|
//#endregion
|
|
47
|
-
export { ContentCollectionsContext, ContentCollectionsPluginContext, ContentCollectionsPluginOptions, ContentCollectionsPluginResolvedConfig, ContentCollectionsPluginUserConfig
|
|
42
|
+
export { ContentCollectionsContext, ContentCollectionsPluginContext, ContentCollectionsPluginOptions, ContentCollectionsPluginResolvedConfig, ContentCollectionsPluginUserConfig };
|
|
48
43
|
//# sourceMappingURL=plugin.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.d.cts","names":[],"sources":["../../src/types/plugin.ts"],"mappings":";;;;KAyBY,yBAAA,GAA4B,IAAA,CACtC,OAAA,CAAQ,UAAA,QAAkB,qBAAA;EAEtB,OAAA,EAAS,YAAA;AAAA;AAAA,UAEE,+BAAA;;;;;;;;;EASf,UAAA;EAbA;;;EAkBA,WAAA,GAAc,aAAA;EAhBD;;;AAEf;;;;;EAwBE,UAAA;AAAA;AAAA,KAGU,kCAAA,GAAqC,UAAA;EAC/C,kBAAA,GAAqB,+BAAA;AAAA;AAAA,KAGX,sCAAA,GAAyC,cAAA;EACnD,kBAAA,EAAoB,QAAA,CAClB,IAAA,CAAK,+BAAA,mBAEL,IAAA,CAAK,+BAAA;AAAA;AAAA,KAGG,+BAAA,yBACc,sCAAA,GACtB,sCAAA,IACA,aAAA,CAAc,eAAA;EAChB,kBAAA,EAAoB,yBAAA;AAAA
|
|
1
|
+
{"version":3,"file":"plugin.d.cts","names":[],"sources":["../../src/types/plugin.ts"],"mappings":";;;;KAyBY,yBAAA,GAA4B,IAAA,CACtC,OAAA,CAAQ,UAAA,QAAkB,qBAAA;EAEtB,OAAA,EAAS,YAAA;AAAA;AAAA,UAEE,+BAAA;;;;;;;;;EASf,UAAA;EAbA;;;EAkBA,WAAA,GAAc,aAAA;EAhBD;;;AAEf;;;;;EAwBE,UAAA;AAAA;AAAA,KAGU,kCAAA,GAAqC,UAAA;EAC/C,kBAAA,GAAqB,+BAAA;AAAA;AAAA,KAGX,sCAAA,GAAyC,cAAA;EACnD,kBAAA,EAAoB,QAAA,CAClB,IAAA,CAAK,+BAAA,mBAEL,IAAA,CAAK,+BAAA;AAAA;AAAA,KAGG,+BAAA,yBACc,sCAAA,GACtB,sCAAA,IACA,aAAA,CAAc,eAAA;EAChB,kBAAA,EAAoB,yBAAA;AAAA"}
|
package/dist/types/plugin.d.mts
CHANGED
|
@@ -38,11 +38,6 @@ type ContentCollectionsPluginResolvedConfig = ResolvedConfig & {
|
|
|
38
38
|
type ContentCollectionsPluginContext<TResolvedConfig extends ContentCollectionsPluginResolvedConfig = ContentCollectionsPluginResolvedConfig> = PluginContext<TResolvedConfig> & {
|
|
39
39
|
contentCollections: ContentCollectionsContext;
|
|
40
40
|
};
|
|
41
|
-
declare type __ΩContentCollectionsContext = any[];
|
|
42
|
-
declare type __ΩContentCollectionsPluginOptions = any[];
|
|
43
|
-
declare type __ΩContentCollectionsPluginUserConfig = any[];
|
|
44
|
-
declare type __ΩContentCollectionsPluginResolvedConfig = any[];
|
|
45
|
-
declare type __ΩContentCollectionsPluginContext = any[];
|
|
46
41
|
//#endregion
|
|
47
|
-
export { ContentCollectionsContext, ContentCollectionsPluginContext, ContentCollectionsPluginOptions, ContentCollectionsPluginResolvedConfig, ContentCollectionsPluginUserConfig
|
|
42
|
+
export { ContentCollectionsContext, ContentCollectionsPluginContext, ContentCollectionsPluginOptions, ContentCollectionsPluginResolvedConfig, ContentCollectionsPluginUserConfig };
|
|
48
43
|
//# sourceMappingURL=plugin.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.d.mts","names":[],"sources":["../../src/types/plugin.ts"],"mappings":";;;;KAyBY,yBAAA,GAA4B,IAAA,CACtC,OAAA,CAAQ,UAAA,QAAkB,qBAAA;EAEtB,OAAA,EAAS,YAAA;AAAA;AAAA,UAEE,+BAAA;;;;;;;;;EASf,UAAA;EAbA;;;EAkBA,WAAA,GAAc,aAAA;EAhBD;;;AAEf;;;;;EAwBE,UAAA;AAAA;AAAA,KAGU,kCAAA,GAAqC,UAAA;EAC/C,kBAAA,GAAqB,+BAAA;AAAA;AAAA,KAGX,sCAAA,GAAyC,cAAA;EACnD,kBAAA,EAAoB,QAAA,CAClB,IAAA,CAAK,+BAAA,mBAEL,IAAA,CAAK,+BAAA;AAAA;AAAA,KAGG,+BAAA,yBACc,sCAAA,GACtB,sCAAA,IACA,aAAA,CAAc,eAAA;EAChB,kBAAA,EAAoB,yBAAA;AAAA
|
|
1
|
+
{"version":3,"file":"plugin.d.mts","names":[],"sources":["../../src/types/plugin.ts"],"mappings":";;;;KAyBY,yBAAA,GAA4B,IAAA,CACtC,OAAA,CAAQ,UAAA,QAAkB,qBAAA;EAEtB,OAAA,EAAS,YAAA;AAAA;AAAA,UAEE,+BAAA;;;;;;;;;EASf,UAAA;EAbA;;;EAkBA,WAAA,GAAc,aAAA;EAhBD;;;AAEf;;;;;EAwBE,UAAA;AAAA;AAAA,KAGU,kCAAA,GAAqC,UAAA;EAC/C,kBAAA,GAAqB,+BAAA;AAAA;AAAA,KAGX,sCAAA,GAAyC,cAAA;EACnD,kBAAA,EAAoB,QAAA,CAClB,IAAA,CAAK,+BAAA,mBAEL,IAAA,CAAK,+BAAA;AAAA;AAAA,KAGG,+BAAA,yBACc,sCAAA,GACtB,sCAAA,IACA,aAAA,CAAc,eAAA;EAChB,kBAAA,EAAoB,yBAAA;AAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-content-collections",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.389",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A Powerlines plugin to generate project code using Content Collections.",
|
|
6
6
|
"keywords": [
|
|
@@ -138,18 +138,18 @@
|
|
|
138
138
|
"files": ["dist/**/*"],
|
|
139
139
|
"dependencies": {
|
|
140
140
|
"@standard-schema/spec": "^1.1.0",
|
|
141
|
-
"@stryke/fs": "^0.33.
|
|
142
|
-
"@stryke/path": "^0.27.
|
|
143
|
-
"@stryke/string-format": "^0.17.
|
|
144
|
-
"@stryke/type-checks": "^0.6.
|
|
145
|
-
"@stryke/types": "^0.11.
|
|
141
|
+
"@stryke/fs": "^0.33.66",
|
|
142
|
+
"@stryke/path": "^0.27.4",
|
|
143
|
+
"@stryke/string-format": "^0.17.9",
|
|
144
|
+
"@stryke/type-checks": "^0.6.1",
|
|
145
|
+
"@stryke/types": "^0.11.3",
|
|
146
146
|
"defu": "^6.1.6",
|
|
147
147
|
"pluralize": "^8.0.0",
|
|
148
|
-
"powerlines": "^0.42.
|
|
148
|
+
"powerlines": "^0.42.30"
|
|
149
149
|
},
|
|
150
150
|
"devDependencies": {
|
|
151
151
|
"@content-collections/core": "^0.12.0",
|
|
152
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
152
|
+
"@powerlines/plugin-plugin": "^0.12.340",
|
|
153
153
|
"@types/node": "^25.5.2",
|
|
154
154
|
"@types/pluralize": "^0.0.33"
|
|
155
155
|
},
|
|
@@ -158,5 +158,5 @@
|
|
|
158
158
|
"@content-collections/core": { "optional": false }
|
|
159
159
|
},
|
|
160
160
|
"publishConfig": { "access": "public" },
|
|
161
|
-
"gitHead": "
|
|
161
|
+
"gitHead": "454fceda20c6f4dda53f6bc5901e5768ac253365"
|
|
162
162
|
}
|