@powerlines/plugin-automd 0.1.3 → 0.1.5
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-DOPvmpxM.d.cts → index--IRO7VRO.d.cts} +25 -1
- package/dist/{index-4ixdjnnj.d.ts → index-D21suH0c.d.ts} +25 -1
- package/dist/{src/index.d.cts → index.d.cts} +3 -3
- package/dist/{src/index.d.ts → index.d.ts} +3 -3
- package/dist/types/index.d.cts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/plugin.d.cts +1 -1
- package/dist/types/plugin.d.ts +1 -1
- package/package.json +10 -10
- /package/dist/{src/index.cjs → index.cjs} +0 -0
- /package/dist/{src/index.js → index.js} +0 -0
|
@@ -11,7 +11,7 @@ import { PackageJson } from '@stryke/types/package-json';
|
|
|
11
11
|
import { Jiti } from 'jiti';
|
|
12
12
|
import { ParserOptions, ParseResult } from 'oxc-parser';
|
|
13
13
|
import { Range } from 'semver';
|
|
14
|
-
import { UnpluginContext, UnpluginBuildContext, TransformResult, ExternalIdResult, HookFilter, UnpluginOptions } from 'unplugin';
|
|
14
|
+
import { UnpluginMessage, UnpluginContext, UnpluginBuildContext, TransformResult, ExternalIdResult, HookFilter, UnpluginOptions } from 'unplugin';
|
|
15
15
|
import { TsConfigJson, CompilerOptions } from '@stryke/types/tsconfig';
|
|
16
16
|
import ts from 'typescript';
|
|
17
17
|
import { PrimitiveJsonValue } from '@stryke/json/types';
|
|
@@ -938,6 +938,30 @@ interface Context<TResolvedConfig extends ResolvedConfig = ResolvedConfig> {
|
|
|
938
938
|
* A logging function for the Powerlines engine
|
|
939
939
|
*/
|
|
940
940
|
log: LogFn;
|
|
941
|
+
/**
|
|
942
|
+
* A logging function for fatal messages
|
|
943
|
+
*/
|
|
944
|
+
fatal: (message: string | UnpluginMessage) => void;
|
|
945
|
+
/**
|
|
946
|
+
* A logging function for error messages
|
|
947
|
+
*/
|
|
948
|
+
error: (message: string | UnpluginMessage) => void;
|
|
949
|
+
/**
|
|
950
|
+
* A logging function for warning messages
|
|
951
|
+
*/
|
|
952
|
+
warn: (message: string | UnpluginMessage) => void;
|
|
953
|
+
/**
|
|
954
|
+
* A logging function for informational messages
|
|
955
|
+
*/
|
|
956
|
+
info: (message: string | UnpluginMessage) => void;
|
|
957
|
+
/**
|
|
958
|
+
* A logging function for debug messages
|
|
959
|
+
*/
|
|
960
|
+
debug: (message: string | UnpluginMessage) => void;
|
|
961
|
+
/**
|
|
962
|
+
* A logging function for trace messages
|
|
963
|
+
*/
|
|
964
|
+
trace: (message: string | UnpluginMessage) => void;
|
|
941
965
|
/**
|
|
942
966
|
* The metadata information
|
|
943
967
|
*/
|
|
@@ -11,7 +11,7 @@ import { PackageJson } from '@stryke/types/package-json';
|
|
|
11
11
|
import { Jiti } from 'jiti';
|
|
12
12
|
import { ParserOptions, ParseResult } from 'oxc-parser';
|
|
13
13
|
import { Range } from 'semver';
|
|
14
|
-
import { UnpluginContext, UnpluginBuildContext, TransformResult, ExternalIdResult, HookFilter, UnpluginOptions } from 'unplugin';
|
|
14
|
+
import { UnpluginMessage, UnpluginContext, UnpluginBuildContext, TransformResult, ExternalIdResult, HookFilter, UnpluginOptions } from 'unplugin';
|
|
15
15
|
import { TsConfigJson, CompilerOptions } from '@stryke/types/tsconfig';
|
|
16
16
|
import ts from 'typescript';
|
|
17
17
|
import { PrimitiveJsonValue } from '@stryke/json/types';
|
|
@@ -938,6 +938,30 @@ interface Context<TResolvedConfig extends ResolvedConfig = ResolvedConfig> {
|
|
|
938
938
|
* A logging function for the Powerlines engine
|
|
939
939
|
*/
|
|
940
940
|
log: LogFn;
|
|
941
|
+
/**
|
|
942
|
+
* A logging function for fatal messages
|
|
943
|
+
*/
|
|
944
|
+
fatal: (message: string | UnpluginMessage) => void;
|
|
945
|
+
/**
|
|
946
|
+
* A logging function for error messages
|
|
947
|
+
*/
|
|
948
|
+
error: (message: string | UnpluginMessage) => void;
|
|
949
|
+
/**
|
|
950
|
+
* A logging function for warning messages
|
|
951
|
+
*/
|
|
952
|
+
warn: (message: string | UnpluginMessage) => void;
|
|
953
|
+
/**
|
|
954
|
+
* A logging function for informational messages
|
|
955
|
+
*/
|
|
956
|
+
info: (message: string | UnpluginMessage) => void;
|
|
957
|
+
/**
|
|
958
|
+
* A logging function for debug messages
|
|
959
|
+
*/
|
|
960
|
+
debug: (message: string | UnpluginMessage) => void;
|
|
961
|
+
/**
|
|
962
|
+
* A logging function for trace messages
|
|
963
|
+
*/
|
|
964
|
+
trace: (message: string | UnpluginMessage) => void;
|
|
941
965
|
/**
|
|
942
966
|
* The metadata information
|
|
943
967
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { A as AutoMDPluginContext, a as AutoMDPluginOptions, P as Plugin } from '
|
|
2
|
-
export { c as AutoMDPluginResolvedConfig, b as AutoMDPluginUserConfig } from '
|
|
3
|
-
export { TOCOptions } from '
|
|
1
|
+
import { A as AutoMDPluginContext, a as AutoMDPluginOptions, P as Plugin } from './index--IRO7VRO.cjs';
|
|
2
|
+
export { c as AutoMDPluginResolvedConfig, b as AutoMDPluginUserConfig } from './index--IRO7VRO.cjs';
|
|
3
|
+
export { TOCOptions } from './types/toc.cjs';
|
|
4
4
|
import 'automd';
|
|
5
5
|
import '@storm-software/build-tools/types';
|
|
6
6
|
import '@storm-software/config-tools/types';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { A as AutoMDPluginContext, a as AutoMDPluginOptions, P as Plugin } from '
|
|
2
|
-
export { c as AutoMDPluginResolvedConfig, b as AutoMDPluginUserConfig } from '
|
|
3
|
-
export { TOCOptions } from '
|
|
1
|
+
import { A as AutoMDPluginContext, a as AutoMDPluginOptions, P as Plugin } from './index-D21suH0c.js';
|
|
2
|
+
export { c as AutoMDPluginResolvedConfig, b as AutoMDPluginUserConfig } from './index-D21suH0c.js';
|
|
3
|
+
export { TOCOptions } from './types/toc.js';
|
|
4
4
|
import 'automd';
|
|
5
5
|
import '@storm-software/build-tools/types';
|
|
6
6
|
import '@storm-software/config-tools/types';
|
package/dist/types/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { A as AutoMDPluginContext, a as AutoMDPluginOptions, c as AutoMDPluginResolvedConfig, b as AutoMDPluginUserConfig } from '../index
|
|
1
|
+
export { A as AutoMDPluginContext, a as AutoMDPluginOptions, c as AutoMDPluginResolvedConfig, b as AutoMDPluginUserConfig } from '../index--IRO7VRO.cjs';
|
|
2
2
|
export { TOCOptions } from './toc.cjs';
|
|
3
3
|
import 'automd';
|
|
4
4
|
import '@storm-software/build-tools/types';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { A as AutoMDPluginContext, a as AutoMDPluginOptions, c as AutoMDPluginResolvedConfig, b as AutoMDPluginUserConfig } from '../index-
|
|
1
|
+
export { A as AutoMDPluginContext, a as AutoMDPluginOptions, c as AutoMDPluginResolvedConfig, b as AutoMDPluginUserConfig } from '../index-D21suH0c.js';
|
|
2
2
|
export { TOCOptions } from './toc.js';
|
|
3
3
|
import 'automd';
|
|
4
4
|
import '@storm-software/build-tools/types';
|
package/dist/types/plugin.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import 'automd';
|
|
2
|
-
export { A as AutoMDPluginContext, a as AutoMDPluginOptions, c as AutoMDPluginResolvedConfig, b as AutoMDPluginUserConfig } from '../index
|
|
2
|
+
export { A as AutoMDPluginContext, a as AutoMDPluginOptions, c as AutoMDPluginResolvedConfig, b as AutoMDPluginUserConfig } from '../index--IRO7VRO.cjs';
|
|
3
3
|
import './toc.cjs';
|
|
4
4
|
import '@storm-software/build-tools/types';
|
|
5
5
|
import '@storm-software/config-tools/types';
|
package/dist/types/plugin.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import 'automd';
|
|
2
|
-
export { A as AutoMDPluginContext, a as AutoMDPluginOptions, c as AutoMDPluginResolvedConfig, b as AutoMDPluginUserConfig } from '../index-
|
|
2
|
+
export { A as AutoMDPluginContext, a as AutoMDPluginOptions, c as AutoMDPluginResolvedConfig, b as AutoMDPluginUserConfig } from '../index-D21suH0c.js';
|
|
3
3
|
import './toc.js';
|
|
4
4
|
import '@storm-software/build-tools/types';
|
|
5
5
|
import '@storm-software/config-tools/types';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-automd",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A Powerlines plugin to maintain a project's markdown files using AutoMD generators.",
|
|
6
6
|
"repository": {
|
|
@@ -99,22 +99,22 @@
|
|
|
99
99
|
"files": ["dist/**/*"],
|
|
100
100
|
"keywords": ["automd", "powerlines", "storm-software", "powerlines-plugin"],
|
|
101
101
|
"dependencies": {
|
|
102
|
-
"@stryke/convert": "^0.6.
|
|
103
|
-
"@stryke/fs": "^0.32.
|
|
104
|
-
"@stryke/path": "^0.
|
|
105
|
-
"@stryke/type-checks": "^0.3.
|
|
106
|
-
"@stryke/types": "^0.10.
|
|
102
|
+
"@stryke/convert": "^0.6.1",
|
|
103
|
+
"@stryke/fs": "^0.32.11",
|
|
104
|
+
"@stryke/path": "^0.19.0",
|
|
105
|
+
"@stryke/type-checks": "^0.3.11",
|
|
106
|
+
"@stryke/types": "^0.10.1",
|
|
107
107
|
"c12": "^3.3.1",
|
|
108
108
|
"defu": "^6.1.4",
|
|
109
109
|
"markdown-toc": "^1.2.0",
|
|
110
|
-
"powerlines": "^0.
|
|
110
|
+
"powerlines": "^0.19.1"
|
|
111
111
|
},
|
|
112
112
|
"devDependencies": {
|
|
113
|
-
"@powerlines/nx": "^0.10.
|
|
114
|
-
"@powerlines/plugin-plugin": "^0.11.
|
|
113
|
+
"@powerlines/nx": "^0.10.5",
|
|
114
|
+
"@powerlines/plugin-plugin": "^0.11.13",
|
|
115
115
|
"@types/node": "^22.19.0",
|
|
116
116
|
"automd": "^0.4.2"
|
|
117
117
|
},
|
|
118
118
|
"publishConfig": { "access": "public" },
|
|
119
|
-
"gitHead": "
|
|
119
|
+
"gitHead": "d25499feacd0143784f3cd426488909134bffab2"
|
|
120
120
|
}
|
|
File without changes
|
|
File without changes
|