@powerlines/plugin-automd 0.1.464 → 0.1.468

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.cjs CHANGED
@@ -47,7 +47,7 @@ const plugin = (options = {}) => {
47
47
  }) };
48
48
  },
49
49
  async configResolved() {
50
- if (this.config.framework && !(0, _stryke_convert_to_array.toArray)(this.config.automd.prefix).includes(this.config.framework)) this.config.automd.prefix = (0, _stryke_convert_to_array.toArray)(this.config.automd.prefix).concat(this.config.framework);
50
+ if (this.config.framework?.name && !(0, _stryke_convert_to_array.toArray)(this.config.automd.prefix).includes(this.config.framework?.name)) this.config.automd.prefix = (0, _stryke_convert_to_array.toArray)(this.config.automd.prefix).concat(this.config.framework?.name);
51
51
  if (this.config.automd.configFile) {
52
52
  const { config } = await (0, c12.loadConfig)({
53
53
  cwd: this.config.automd.dir,
package/dist/index.mjs CHANGED
@@ -43,7 +43,7 @@ const plugin = (options = {}) => {
43
43
  }) };
44
44
  },
45
45
  async configResolved() {
46
- if (this.config.framework && !toArray(this.config.automd.prefix).includes(this.config.framework)) this.config.automd.prefix = toArray(this.config.automd.prefix).concat(this.config.framework);
46
+ if (this.config.framework?.name && !toArray(this.config.automd.prefix).includes(this.config.framework?.name)) this.config.automd.prefix = toArray(this.config.automd.prefix).concat(this.config.framework?.name);
47
47
  if (this.config.automd.configFile) {
48
48
  const { config } = await loadConfig$1({
49
49
  cwd: this.config.automd.dir,
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","names":["loadConfigFile"],"sources":["../src/index.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { toArray } from \"@stryke/convert/to-array\";\nimport { isDirectory } from \"@stryke/fs/is-file\";\nimport { listFiles } from \"@stryke/fs/list-files\";\nimport { appendPath } from \"@stryke/path/append\";\nimport { isAbsolutePath } from \"@stryke/path/is-type\";\nimport { joinPaths } from \"@stryke/path/join-paths\";\nimport { replacePath } from \"@stryke/path/replace\";\nimport {\n Config,\n GenerateContext,\n GenerateResult,\n loadConfig,\n resolveConfig,\n transform\n} from \"automd\";\nimport { loadConfig as loadConfigFile } from \"c12\";\nimport defu from \"defu\";\nimport toc from \"markdown-toc\";\nimport type { Plugin } from \"powerlines\";\nimport { AutoMDPluginContext, AutoMDPluginOptions } from \"./types/plugin\";\nimport { TOCOptions } from \"./types/toc\";\n\nexport * from \"./types\";\n\ndeclare module \"powerlines\" {\n interface Config {\n automd?: AutoMDPluginOptions;\n }\n}\n\n/**\n * AutoMD Plugin\n *\n * @remarks\n * A Powerlines plugin to use the AutoMD markdown transformer during the prepare task.\n *\n * @see https://automd.unjs.io/\n *\n * @param options - The plugin options.\n * @returns A Powerlines plugin instance.\n */\nexport const plugin = <\n TContext extends AutoMDPluginContext = AutoMDPluginContext\n>(\n options: AutoMDPluginOptions = {}\n): Plugin<TContext> => {\n return {\n name: \"automd\",\n async config() {\n const config = await loadConfig(\n joinPaths(this.config.cwd || process.cwd(), this.config.root),\n options\n );\n\n if (!config.prefix || !Array.isArray(config.prefix)) {\n config.prefix = toArray(config.prefix ?? []);\n }\n\n if (!config.prefix.includes(\"automd\")) {\n config.prefix.push(\"automd\");\n }\n if (!config.prefix.includes(\"powerlines\")) {\n config.prefix.push(\"powerlines\");\n }\n\n return {\n automd: defu(config ?? {}, {\n configFile: options.configFile,\n allowIssues: true,\n dir: this.config.root,\n watch: false,\n input: \"README.md\",\n toc: {\n maxDepth: 6,\n bullets: \"-\"\n }\n })\n };\n },\n async configResolved() {\n if (\n this.config.framework &&\n !toArray(this.config.automd.prefix).includes(this.config.framework)\n ) {\n this.config.automd.prefix = toArray(this.config.automd.prefix).concat(\n this.config.framework\n );\n }\n\n if (this.config.automd.configFile) {\n const { config } = await loadConfigFile<Config>({\n cwd: this.config.automd.dir,\n configFile: this.config.automd.configFile,\n defaults: {\n ignore: [\"**/node_modules\", \"**/dist\", \"**/.*\"],\n dir: this.config.automd.dir\n }\n });\n\n this.config.automd = resolveConfig(\n defu(this.config.automd, {\n ...config,\n prefix: toArray(config.prefix ?? [])\n }) as Config\n );\n }\n\n this.config.automd.input = (\n await Promise.all(\n toArray(this.config.automd.input).map(async input => {\n if (input.includes(\"*\")) {\n return listFiles(\n isAbsolutePath(input)\n ? input\n : appendPath(input, this.config.root),\n {\n ignore: this.config.automd.ignore\n }\n );\n }\n\n return isAbsolutePath(input)\n ? input\n : appendPath(input, this.config.root);\n })\n )\n ).flat();\n\n if (\n this.config.automd.output &&\n !isAbsolutePath(this.config.automd.output)\n ) {\n this.config.automd.output = appendPath(\n this.config.automd.output,\n this.config.root\n );\n }\n\n this.config.automd.generators ??= {};\n\n if (this.config.automd.toc !== false) {\n this.config.automd.generators.toc ??= {\n name: \"toc\",\n generate: (ctx: GenerateContext): GenerateResult => {\n const opts = (this.config.automd.toc ?? {}) as TOCOptions;\n\n return {\n contents: toc(ctx.block.contents, {\n ...opts,\n maxdepth: opts.maxDepth,\n first1: opts.firstH1\n }).content\n };\n }\n };\n }\n },\n async docs() {\n await Promise.all(\n toArray(this.config.automd.input).map(async input => {\n const contents = await this.fs.read(input);\n if (contents) {\n const result = await transform(contents, this.config.automd);\n if (result.hasIssues && this.config.automd.allowIssues === false) {\n throw new Error(\n `AutoMD found issues in file \"${\n input\n }\". Please resolve the issues or set \\`allowIssues\\` to true in the plugin configuration to ignore them.`\n );\n }\n\n if (result.hasChanged) {\n await this.fs.write(\n appendPath(\n this.config.automd.output\n ? isDirectory(this.config.automd.output)\n ? replacePath(input, this.config.automd.output)\n : this.config.automd.output\n : input,\n this.config.root\n ),\n result.contents\n );\n }\n }\n })\n );\n }\n };\n};\n\nexport default plugin;\n"],"mappings":"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"}
1
+ {"version":3,"file":"index.mjs","names":["loadConfigFile"],"sources":["../src/index.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { toArray } from \"@stryke/convert/to-array\";\nimport { isDirectory } from \"@stryke/fs/is-file\";\nimport { listFiles } from \"@stryke/fs/list-files\";\nimport { appendPath } from \"@stryke/path/append\";\nimport { isAbsolutePath } from \"@stryke/path/is-type\";\nimport { joinPaths } from \"@stryke/path/join-paths\";\nimport { replacePath } from \"@stryke/path/replace\";\nimport {\n Config,\n GenerateContext,\n GenerateResult,\n loadConfig,\n resolveConfig,\n transform\n} from \"automd\";\nimport { loadConfig as loadConfigFile } from \"c12\";\nimport defu from \"defu\";\nimport toc from \"markdown-toc\";\nimport type { Plugin } from \"powerlines\";\nimport { AutoMDPluginContext, AutoMDPluginOptions } from \"./types/plugin\";\nimport { TOCOptions } from \"./types/toc\";\n\nexport * from \"./types\";\n\ndeclare module \"powerlines\" {\n interface Config {\n automd?: AutoMDPluginOptions;\n }\n}\n\n/**\n * AutoMD Plugin\n *\n * @remarks\n * A Powerlines plugin to use the AutoMD markdown transformer during the prepare task.\n *\n * @see https://automd.unjs.io/\n *\n * @param options - The plugin options.\n * @returns A Powerlines plugin instance.\n */\nexport const plugin = <\n TContext extends AutoMDPluginContext = AutoMDPluginContext\n>(\n options: AutoMDPluginOptions = {}\n): Plugin<TContext> => {\n return {\n name: \"automd\",\n async config() {\n const config = await loadConfig(\n joinPaths(this.config.cwd || process.cwd(), this.config.root),\n options\n );\n\n if (!config.prefix || !Array.isArray(config.prefix)) {\n config.prefix = toArray(config.prefix ?? []);\n }\n\n if (!config.prefix.includes(\"automd\")) {\n config.prefix.push(\"automd\");\n }\n if (!config.prefix.includes(\"powerlines\")) {\n config.prefix.push(\"powerlines\");\n }\n\n return {\n automd: defu(config ?? {}, {\n configFile: options.configFile,\n allowIssues: true,\n dir: this.config.root,\n watch: false,\n input: \"README.md\",\n toc: {\n maxDepth: 6,\n bullets: \"-\"\n }\n })\n };\n },\n async configResolved() {\n if (\n this.config.framework?.name &&\n !toArray(this.config.automd.prefix).includes(\n this.config.framework?.name\n )\n ) {\n this.config.automd.prefix = toArray(this.config.automd.prefix).concat(\n this.config.framework?.name\n );\n }\n\n if (this.config.automd.configFile) {\n const { config } = await loadConfigFile<Config>({\n cwd: this.config.automd.dir,\n configFile: this.config.automd.configFile,\n defaults: {\n ignore: [\"**/node_modules\", \"**/dist\", \"**/.*\"],\n dir: this.config.automd.dir\n }\n });\n\n this.config.automd = resolveConfig(\n defu(this.config.automd, {\n ...config,\n prefix: toArray(config.prefix ?? [])\n }) as Config\n );\n }\n\n this.config.automd.input = (\n await Promise.all(\n toArray(this.config.automd.input).map(async input => {\n if (input.includes(\"*\")) {\n return listFiles(\n isAbsolutePath(input)\n ? input\n : appendPath(input, this.config.root),\n {\n ignore: this.config.automd.ignore\n }\n );\n }\n\n return isAbsolutePath(input)\n ? input\n : appendPath(input, this.config.root);\n })\n )\n ).flat();\n\n if (\n this.config.automd.output &&\n !isAbsolutePath(this.config.automd.output)\n ) {\n this.config.automd.output = appendPath(\n this.config.automd.output,\n this.config.root\n );\n }\n\n this.config.automd.generators ??= {};\n\n if (this.config.automd.toc !== false) {\n this.config.automd.generators.toc ??= {\n name: \"toc\",\n generate: (ctx: GenerateContext): GenerateResult => {\n const opts = (this.config.automd.toc ?? {}) as TOCOptions;\n\n return {\n contents: toc(ctx.block.contents, {\n ...opts,\n maxdepth: opts.maxDepth,\n first1: opts.firstH1\n }).content\n };\n }\n };\n }\n },\n async docs() {\n await Promise.all(\n toArray(this.config.automd.input).map(async input => {\n const contents = await this.fs.read(input);\n if (contents) {\n const result = await transform(contents, this.config.automd);\n if (result.hasIssues && this.config.automd.allowIssues === false) {\n throw new Error(\n `AutoMD found issues in file \"${\n input\n }\". Please resolve the issues or set \\`allowIssues\\` to true in the plugin configuration to ignore them.`\n );\n }\n\n if (result.hasChanged) {\n await this.fs.write(\n appendPath(\n this.config.automd.output\n ? isDirectory(this.config.automd.output)\n ? replacePath(input, this.config.automd.output)\n : this.config.automd.output\n : input,\n this.config.root\n ),\n result.contents\n );\n }\n }\n })\n );\n }\n };\n};\n\nexport default plugin;\n"],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/plugin-automd",
3
- "version": "0.1.464",
3
+ "version": "0.1.468",
4
4
  "private": false,
5
5
  "description": "A Powerlines plugin to maintain a project's markdown files using AutoMD generators.",
6
6
  "keywords": ["automd", "powerlines", "storm-software", "powerlines-plugin"],
@@ -12,7 +12,7 @@
12
12
  "repository": {
13
13
  "type": "github",
14
14
  "url": "https://github.com/storm-software/powerlines.git",
15
- "directory": "packages/plugin-automd"
15
+ "directory": "packages/plugins/plugin-automd"
16
16
  },
17
17
  "funding": {
18
18
  "type": "github",
@@ -40,63 +40,20 @@
40
40
  ],
41
41
  "type": "module",
42
42
  "exports": {
43
- ".": {
44
- "require": {
45
- "types": "./dist/index.d.cts",
46
- "default": "./dist/index.cjs"
47
- },
48
- "import": {
49
- "types": "./dist/index.d.mts",
50
- "default": "./dist/index.mjs"
51
- },
52
- "default": {
53
- "types": "./dist/index.d.mts",
54
- "default": "./dist/index.mjs"
55
- }
56
- },
57
- "./package.json": "./package.json",
43
+ ".": { "import": "./dist/index.mjs", "require": "./dist/index.cjs" },
58
44
  "./types": {
59
- "require": {
60
- "types": "./dist/types/index.d.cts",
61
- "default": "./dist/types/index.cjs"
62
- },
63
- "import": {
64
- "types": "./dist/types/index.d.mts",
65
- "default": "./dist/types/index.mjs"
66
- },
67
- "default": {
68
- "types": "./dist/types/index.d.mts",
69
- "default": "./dist/types/index.mjs"
70
- }
45
+ "import": "./dist/types/index.mjs",
46
+ "require": "./dist/types/index.cjs"
71
47
  },
72
48
  "./types/plugin": {
73
- "require": {
74
- "types": "./dist/types/plugin.d.cts",
75
- "default": "./dist/types/plugin.cjs"
76
- },
77
- "import": {
78
- "types": "./dist/types/plugin.d.mts",
79
- "default": "./dist/types/plugin.mjs"
80
- },
81
- "default": {
82
- "types": "./dist/types/plugin.d.mts",
83
- "default": "./dist/types/plugin.mjs"
84
- }
49
+ "import": "./dist/types/plugin.mjs",
50
+ "require": "./dist/types/plugin.cjs"
85
51
  },
86
52
  "./types/toc": {
87
- "require": {
88
- "types": "./dist/types/toc.d.cts",
89
- "default": "./dist/types/toc.cjs"
90
- },
91
- "import": {
92
- "types": "./dist/types/toc.d.mts",
93
- "default": "./dist/types/toc.mjs"
94
- },
95
- "default": {
96
- "types": "./dist/types/toc.d.mts",
97
- "default": "./dist/types/toc.mjs"
98
- }
99
- }
53
+ "import": "./dist/types/toc.mjs",
54
+ "require": "./dist/types/toc.cjs"
55
+ },
56
+ "./package.json": "./package.json"
100
57
  },
101
58
  "main": "./dist/index.cjs",
102
59
  "module": "./dist/index.mjs",
@@ -104,20 +61,20 @@
104
61
  "typings": "dist/index.d.mts",
105
62
  "files": ["dist/**/*"],
106
63
  "dependencies": {
107
- "@stryke/convert": "^0.7.3",
108
- "@stryke/fs": "^0.33.70",
109
- "@stryke/path": "^0.28.2",
110
- "@stryke/type-checks": "^0.6.5",
111
- "@stryke/types": "^0.12.0",
64
+ "@stryke/convert": "^0.7.6",
65
+ "@stryke/fs": "^0.33.75",
66
+ "@stryke/path": "^0.29.2",
67
+ "@stryke/type-checks": "^0.6.8",
68
+ "@stryke/types": "^0.12.3",
112
69
  "c12": "^3.3.4",
113
70
  "defu": "^6.1.7",
114
71
  "markdown-toc": "^1.2.0"
115
72
  },
116
73
  "devDependencies": {
117
- "@powerlines/plugin-plugin": "^0.12.415",
118
- "@types/node": "^25.6.0",
74
+ "@powerlines/plugin-plugin": "^0.12.419",
75
+ "@types/node": "^25.7.0",
119
76
  "automd": "^0.4.3"
120
77
  },
121
78
  "publishConfig": { "access": "public" },
122
- "gitHead": "9c4b3c8956edda9e5f0f3354226077b0c25b09a2"
79
+ "gitHead": "3c5c701e16af74006dd70b965009d41eb22ace2a"
123
80
  }