@powerlines/plugin-crypto 0.9.25 → 0.9.29
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/components/crypto.d.cts +1 -1
- package/dist/components/crypto.d.ts +1 -1
- package/dist/components/index.d.cts +1 -1
- package/dist/components/index.d.ts +1 -1
- package/dist/{index-Dpl6_H0U.d.cts → index-e4nmX1u6.d.cts} +16 -3
- package/dist/{index-Dpl6_H0U.d.ts → index-e4nmX1u6.d.ts} +16 -3
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- 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 +8 -8
|
@@ -241,8 +241,8 @@ type ParsedTypeScriptConfig = ts.ParsedCommandLine & {
|
|
|
241
241
|
tsconfigFilePath: string;
|
|
242
242
|
};
|
|
243
243
|
|
|
244
|
-
declare const __VFS_PATCH__
|
|
245
|
-
declare const __VFS_REVERT__
|
|
244
|
+
declare const __VFS_PATCH__ = "__VFS_PATCH__";
|
|
245
|
+
declare const __VFS_REVERT__ = "__VFS_REVERT__";
|
|
246
246
|
type OutputModeType = "fs" | "virtual";
|
|
247
247
|
interface VirtualFile {
|
|
248
248
|
/**
|
|
@@ -661,6 +661,15 @@ interface OutputConfig {
|
|
|
661
661
|
* @defaultValue "dist/\{projectRoot\}"
|
|
662
662
|
*/
|
|
663
663
|
outputPath?: string;
|
|
664
|
+
/**
|
|
665
|
+
* The output directory path for the project build.
|
|
666
|
+
*
|
|
667
|
+
* @remarks
|
|
668
|
+
* This path is used to determine where the built files will be placed after the build process completes. This will be used in scenarios where the monorepo uses TSConfig paths to link packages together.
|
|
669
|
+
*
|
|
670
|
+
* @defaultValue "\{projectRoot\}/dist"
|
|
671
|
+
*/
|
|
672
|
+
distPath?: string;
|
|
664
673
|
/**
|
|
665
674
|
* The format of the output files
|
|
666
675
|
*
|
|
@@ -3982,5 +3991,9 @@ interface CryptoPluginResolvedConfig extends EnvPluginResolvedConfig {
|
|
|
3982
3991
|
crypto: Omit<CryptoPluginOptions, "env">;
|
|
3983
3992
|
}
|
|
3984
3993
|
type CryptoPluginContext<TResolvedConfig extends CryptoPluginResolvedConfig = CryptoPluginResolvedConfig> = EnvPluginContext<TResolvedConfig>;
|
|
3994
|
+
declare type __ΩCryptoPluginOptions = any[];
|
|
3995
|
+
declare type __ΩCryptoPluginUserConfig = any[];
|
|
3996
|
+
declare type __ΩCryptoPluginResolvedConfig = any[];
|
|
3997
|
+
declare type __ΩCryptoPluginContext = any[];
|
|
3985
3998
|
|
|
3986
|
-
export type { CryptoPluginOptions as C, Plugin as P, CryptoPluginContext as a, CryptoPluginUserConfig as b, CryptoPluginResolvedConfig as c };
|
|
3999
|
+
export type { CryptoPluginOptions as C, Plugin as P, __ΩCryptoPluginOptions as _, CryptoPluginContext as a, CryptoPluginUserConfig as b, CryptoPluginResolvedConfig as c, __ΩCryptoPluginUserConfig as d, __ΩCryptoPluginResolvedConfig as e, __ΩCryptoPluginContext as f };
|
|
@@ -241,8 +241,8 @@ type ParsedTypeScriptConfig = ts.ParsedCommandLine & {
|
|
|
241
241
|
tsconfigFilePath: string;
|
|
242
242
|
};
|
|
243
243
|
|
|
244
|
-
declare const __VFS_PATCH__
|
|
245
|
-
declare const __VFS_REVERT__
|
|
244
|
+
declare const __VFS_PATCH__ = "__VFS_PATCH__";
|
|
245
|
+
declare const __VFS_REVERT__ = "__VFS_REVERT__";
|
|
246
246
|
type OutputModeType = "fs" | "virtual";
|
|
247
247
|
interface VirtualFile {
|
|
248
248
|
/**
|
|
@@ -661,6 +661,15 @@ interface OutputConfig {
|
|
|
661
661
|
* @defaultValue "dist/\{projectRoot\}"
|
|
662
662
|
*/
|
|
663
663
|
outputPath?: string;
|
|
664
|
+
/**
|
|
665
|
+
* The output directory path for the project build.
|
|
666
|
+
*
|
|
667
|
+
* @remarks
|
|
668
|
+
* This path is used to determine where the built files will be placed after the build process completes. This will be used in scenarios where the monorepo uses TSConfig paths to link packages together.
|
|
669
|
+
*
|
|
670
|
+
* @defaultValue "\{projectRoot\}/dist"
|
|
671
|
+
*/
|
|
672
|
+
distPath?: string;
|
|
664
673
|
/**
|
|
665
674
|
* The format of the output files
|
|
666
675
|
*
|
|
@@ -3982,5 +3991,9 @@ interface CryptoPluginResolvedConfig extends EnvPluginResolvedConfig {
|
|
|
3982
3991
|
crypto: Omit<CryptoPluginOptions, "env">;
|
|
3983
3992
|
}
|
|
3984
3993
|
type CryptoPluginContext<TResolvedConfig extends CryptoPluginResolvedConfig = CryptoPluginResolvedConfig> = EnvPluginContext<TResolvedConfig>;
|
|
3994
|
+
declare type __ΩCryptoPluginOptions = any[];
|
|
3995
|
+
declare type __ΩCryptoPluginUserConfig = any[];
|
|
3996
|
+
declare type __ΩCryptoPluginResolvedConfig = any[];
|
|
3997
|
+
declare type __ΩCryptoPluginContext = any[];
|
|
3985
3998
|
|
|
3986
|
-
export type { CryptoPluginOptions as C, Plugin as P, CryptoPluginContext as a, CryptoPluginUserConfig as b, CryptoPluginResolvedConfig as c };
|
|
3999
|
+
export type { CryptoPluginOptions as C, Plugin as P, __ΩCryptoPluginOptions as _, CryptoPluginContext as a, CryptoPluginUserConfig as b, CryptoPluginResolvedConfig as c, __ΩCryptoPluginUserConfig as d, __ΩCryptoPluginResolvedConfig as e, __ΩCryptoPluginContext as f };
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { C as CryptoPluginOptions, P as Plugin, a as CryptoPluginContext } from './index-
|
|
2
|
-
export { c as CryptoPluginResolvedConfig, b as CryptoPluginUserConfig } from './index-
|
|
1
|
+
import { C as CryptoPluginOptions, P as Plugin, a as CryptoPluginContext } from './index-e4nmX1u6.cjs';
|
|
2
|
+
export { c as CryptoPluginResolvedConfig, b as CryptoPluginUserConfig, f as __ΩCryptoPluginContext, _ as __ΩCryptoPluginOptions, e as __ΩCryptoPluginResolvedConfig, d as __ΩCryptoPluginUserConfig } from './index-e4nmX1u6.cjs';
|
|
3
3
|
export { cryptoModule } from './components/crypto.cjs';
|
|
4
4
|
import '@alloy-js/core/jsx-runtime';
|
|
5
5
|
import '@deepkit/type';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { C as CryptoPluginOptions, P as Plugin, a as CryptoPluginContext } from './index-
|
|
2
|
-
export { c as CryptoPluginResolvedConfig, b as CryptoPluginUserConfig } from './index-
|
|
1
|
+
import { C as CryptoPluginOptions, P as Plugin, a as CryptoPluginContext } from './index-e4nmX1u6.js';
|
|
2
|
+
export { c as CryptoPluginResolvedConfig, b as CryptoPluginUserConfig, f as __ΩCryptoPluginContext, _ as __ΩCryptoPluginOptions, e as __ΩCryptoPluginResolvedConfig, d as __ΩCryptoPluginUserConfig } from './index-e4nmX1u6.js';
|
|
3
3
|
export { cryptoModule } from './components/crypto.js';
|
|
4
4
|
import '@alloy-js/core/jsx-runtime';
|
|
5
5
|
import '@deepkit/type';
|
package/dist/types/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { a as CryptoPluginContext, C as CryptoPluginOptions, c as CryptoPluginResolvedConfig, b as CryptoPluginUserConfig } from '../index-
|
|
1
|
+
export { a as CryptoPluginContext, C as CryptoPluginOptions, c as CryptoPluginResolvedConfig, b as CryptoPluginUserConfig, f as __ΩCryptoPluginContext, _ as __ΩCryptoPluginOptions, e as __ΩCryptoPluginResolvedConfig, d as __ΩCryptoPluginUserConfig } from '../index-e4nmX1u6.cjs';
|
|
2
2
|
import '@alloy-js/core/jsx-runtime';
|
|
3
3
|
import '@deepkit/type';
|
|
4
4
|
import '@stryke/capnp';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { a as CryptoPluginContext, C as CryptoPluginOptions, c as CryptoPluginResolvedConfig, b as CryptoPluginUserConfig } from '../index-
|
|
1
|
+
export { a as CryptoPluginContext, C as CryptoPluginOptions, c as CryptoPluginResolvedConfig, b as CryptoPluginUserConfig, f as __ΩCryptoPluginContext, _ as __ΩCryptoPluginOptions, e as __ΩCryptoPluginResolvedConfig, d as __ΩCryptoPluginUserConfig } from '../index-e4nmX1u6.js';
|
|
2
2
|
import '@alloy-js/core/jsx-runtime';
|
|
3
3
|
import '@deepkit/type';
|
|
4
4
|
import '@stryke/capnp';
|
package/dist/types/plugin.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { a as CryptoPluginContext, C as CryptoPluginOptions, c as CryptoPluginResolvedConfig, b as CryptoPluginUserConfig } from '../index-
|
|
1
|
+
export { a as CryptoPluginContext, C as CryptoPluginOptions, c as CryptoPluginResolvedConfig, b as CryptoPluginUserConfig, f as __ΩCryptoPluginContext, _ as __ΩCryptoPluginOptions, e as __ΩCryptoPluginResolvedConfig, d as __ΩCryptoPluginUserConfig } from '../index-e4nmX1u6.cjs';
|
|
2
2
|
import '@alloy-js/core/jsx-runtime';
|
|
3
3
|
import '@deepkit/type';
|
|
4
4
|
import '@stryke/capnp';
|
package/dist/types/plugin.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { a as CryptoPluginContext, C as CryptoPluginOptions, c as CryptoPluginResolvedConfig, b as CryptoPluginUserConfig } from '../index-
|
|
1
|
+
export { a as CryptoPluginContext, C as CryptoPluginOptions, c as CryptoPluginResolvedConfig, b as CryptoPluginUserConfig, f as __ΩCryptoPluginContext, _ as __ΩCryptoPluginOptions, e as __ΩCryptoPluginResolvedConfig, d as __ΩCryptoPluginUserConfig } from '../index-e4nmX1u6.js';
|
|
2
2
|
import '@alloy-js/core/jsx-runtime';
|
|
3
3
|
import '@deepkit/type';
|
|
4
4
|
import '@stryke/capnp';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-crypto",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.29",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A Powerlines plugin that provides unique identifier generation capabilities at runtime by adding the `id` builtin module.",
|
|
6
6
|
"repository": {
|
|
@@ -116,17 +116,17 @@
|
|
|
116
116
|
"files": ["dist/**/*"],
|
|
117
117
|
"keywords": ["powerlines", "storm-software", "powerlines-plugin"],
|
|
118
118
|
"dependencies": {
|
|
119
|
-
"@powerlines/plugin-env": "^0.13.
|
|
120
|
-
"@storm-software/config-tools": "^1.188.
|
|
119
|
+
"@powerlines/plugin-env": "^0.13.26",
|
|
120
|
+
"@storm-software/config-tools": "^1.188.42",
|
|
121
121
|
"@stryke/path": "^0.19.2",
|
|
122
122
|
"defu": "^6.1.4",
|
|
123
|
-
"powerlines": "^0.
|
|
123
|
+
"powerlines": "^0.23.3"
|
|
124
124
|
},
|
|
125
125
|
"devDependencies": {
|
|
126
|
-
"@powerlines/nx": "^0.10.
|
|
127
|
-
"@storm-software/tsup": "^0.2.
|
|
128
|
-
"@types/node": "^
|
|
126
|
+
"@powerlines/nx": "^0.10.20",
|
|
127
|
+
"@storm-software/tsup": "^0.2.40",
|
|
128
|
+
"@types/node": "^24.10.1"
|
|
129
129
|
},
|
|
130
130
|
"publishConfig": { "access": "public" },
|
|
131
|
-
"gitHead": "
|
|
131
|
+
"gitHead": "6e43200541ace2946694195c092642e7ac2f3098"
|
|
132
132
|
}
|