@powerlines/plugin-crypto 0.10.14 → 0.10.16
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-DhnSUBEK.d.cts → index-nqMxybfs.d.cts} +2 -10
- package/dist/{index-DhnSUBEK.d.ts → index-nqMxybfs.d.ts} +2 -10
- 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 +5 -5
|
@@ -1480,7 +1480,7 @@ type PluginHooks<TContext extends PluginContext = PluginContext> = {
|
|
|
1480
1480
|
type PluginBuildPlugins<TContext extends PluginContext = PluginContext> = {
|
|
1481
1481
|
[TBuildVariant in UnpluginBuildVariant]?: BuildPlugin<TContext, TBuildVariant>;
|
|
1482
1482
|
};
|
|
1483
|
-
interface Plugin<TContext extends PluginContext<ResolvedConfig> = PluginContext<ResolvedConfig>> extends Partial<PluginHooks<TContext>>, PluginBuildPlugins<TContext> {
|
|
1483
|
+
interface Plugin<in out TContext extends PluginContext<ResolvedConfig> = PluginContext<ResolvedConfig>> extends Partial<PluginHooks<TContext>>, PluginBuildPlugins<TContext> {
|
|
1484
1484
|
/**
|
|
1485
1485
|
* The name of the plugin, for use in deduplication, error messages and logs.
|
|
1486
1486
|
*/
|
|
@@ -1511,7 +1511,7 @@ interface Plugin<TContext extends PluginContext<ResolvedConfig> = PluginContext<
|
|
|
1511
1511
|
* @param other - The other plugin to compare against.
|
|
1512
1512
|
* @returns `true` if the two plugins are the same, `false` otherwise.
|
|
1513
1513
|
*/
|
|
1514
|
-
dedupe?: false | ((other: Plugin<
|
|
1514
|
+
dedupe?: false | ((other: Plugin<any>) => boolean);
|
|
1515
1515
|
/**
|
|
1516
1516
|
* A list of pre-requisite plugins that must be loaded before this plugin can be used.
|
|
1517
1517
|
*/
|
|
@@ -3107,14 +3107,6 @@ type BabelPluginContext<TResolvedConfig extends BabelPluginResolvedConfig = Babe
|
|
|
3107
3107
|
* @showCategories
|
|
3108
3108
|
*/
|
|
3109
3109
|
interface EnvInterface {
|
|
3110
|
-
/**
|
|
3111
|
-
* An indicator that specifies the application is running in the local development environment.
|
|
3112
|
-
*
|
|
3113
|
-
* @hidden
|
|
3114
|
-
* @readonly
|
|
3115
|
-
* @category node
|
|
3116
|
-
*/
|
|
3117
|
-
readonly POWERLINES_LOCAL: boolean;
|
|
3118
3110
|
/**
|
|
3119
3111
|
* The name of the application.
|
|
3120
3112
|
*
|
|
@@ -1480,7 +1480,7 @@ type PluginHooks<TContext extends PluginContext = PluginContext> = {
|
|
|
1480
1480
|
type PluginBuildPlugins<TContext extends PluginContext = PluginContext> = {
|
|
1481
1481
|
[TBuildVariant in UnpluginBuildVariant]?: BuildPlugin<TContext, TBuildVariant>;
|
|
1482
1482
|
};
|
|
1483
|
-
interface Plugin<TContext extends PluginContext<ResolvedConfig> = PluginContext<ResolvedConfig>> extends Partial<PluginHooks<TContext>>, PluginBuildPlugins<TContext> {
|
|
1483
|
+
interface Plugin<in out TContext extends PluginContext<ResolvedConfig> = PluginContext<ResolvedConfig>> extends Partial<PluginHooks<TContext>>, PluginBuildPlugins<TContext> {
|
|
1484
1484
|
/**
|
|
1485
1485
|
* The name of the plugin, for use in deduplication, error messages and logs.
|
|
1486
1486
|
*/
|
|
@@ -1511,7 +1511,7 @@ interface Plugin<TContext extends PluginContext<ResolvedConfig> = PluginContext<
|
|
|
1511
1511
|
* @param other - The other plugin to compare against.
|
|
1512
1512
|
* @returns `true` if the two plugins are the same, `false` otherwise.
|
|
1513
1513
|
*/
|
|
1514
|
-
dedupe?: false | ((other: Plugin<
|
|
1514
|
+
dedupe?: false | ((other: Plugin<any>) => boolean);
|
|
1515
1515
|
/**
|
|
1516
1516
|
* A list of pre-requisite plugins that must be loaded before this plugin can be used.
|
|
1517
1517
|
*/
|
|
@@ -3107,14 +3107,6 @@ type BabelPluginContext<TResolvedConfig extends BabelPluginResolvedConfig = Babe
|
|
|
3107
3107
|
* @showCategories
|
|
3108
3108
|
*/
|
|
3109
3109
|
interface EnvInterface {
|
|
3110
|
-
/**
|
|
3111
|
-
* An indicator that specifies the application is running in the local development environment.
|
|
3112
|
-
*
|
|
3113
|
-
* @hidden
|
|
3114
|
-
* @readonly
|
|
3115
|
-
* @category node
|
|
3116
|
-
*/
|
|
3117
|
-
readonly POWERLINES_LOCAL: boolean;
|
|
3118
3110
|
/**
|
|
3119
3111
|
* The name of the application.
|
|
3120
3112
|
*
|
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, f as __ΩCryptoPluginContext, _ as __ΩCryptoPluginOptions, e as __ΩCryptoPluginResolvedConfig, d as __ΩCryptoPluginUserConfig } from './index-
|
|
1
|
+
import { C as CryptoPluginOptions, P as Plugin, a as CryptoPluginContext } from './index-nqMxybfs.cjs';
|
|
2
|
+
export { c as CryptoPluginResolvedConfig, b as CryptoPluginUserConfig, f as __ΩCryptoPluginContext, _ as __ΩCryptoPluginOptions, e as __ΩCryptoPluginResolvedConfig, d as __ΩCryptoPluginUserConfig } from './index-nqMxybfs.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, f as __ΩCryptoPluginContext, _ as __ΩCryptoPluginOptions, e as __ΩCryptoPluginResolvedConfig, d as __ΩCryptoPluginUserConfig } from './index-
|
|
1
|
+
import { C as CryptoPluginOptions, P as Plugin, a as CryptoPluginContext } from './index-nqMxybfs.js';
|
|
2
|
+
export { c as CryptoPluginResolvedConfig, b as CryptoPluginUserConfig, f as __ΩCryptoPluginContext, _ as __ΩCryptoPluginOptions, e as __ΩCryptoPluginResolvedConfig, d as __ΩCryptoPluginUserConfig } from './index-nqMxybfs.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, f as __ΩCryptoPluginContext, _ as __ΩCryptoPluginOptions, e as __ΩCryptoPluginResolvedConfig, d 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-nqMxybfs.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, f as __ΩCryptoPluginContext, _ as __ΩCryptoPluginOptions, e as __ΩCryptoPluginResolvedConfig, d 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-nqMxybfs.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, f as __ΩCryptoPluginContext, _ as __ΩCryptoPluginOptions, e as __ΩCryptoPluginResolvedConfig, d 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-nqMxybfs.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, f as __ΩCryptoPluginContext, _ as __ΩCryptoPluginOptions, e as __ΩCryptoPluginResolvedConfig, d 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-nqMxybfs.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.10.
|
|
3
|
+
"version": "0.10.16",
|
|
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,18 +116,18 @@
|
|
|
116
116
|
"files": ["dist/**/*"],
|
|
117
117
|
"keywords": ["powerlines", "storm-software", "powerlines-plugin"],
|
|
118
118
|
"dependencies": {
|
|
119
|
-
"@powerlines/plugin-env": "^0.13.
|
|
119
|
+
"@powerlines/plugin-env": "^0.13.48",
|
|
120
120
|
"@storm-software/config-tools": "^1.188.49",
|
|
121
121
|
"@stryke/path": "^0.21.2",
|
|
122
122
|
"defu": "^6.1.4",
|
|
123
|
-
"powerlines": "^0.25.
|
|
123
|
+
"powerlines": "^0.25.4",
|
|
124
124
|
"@noble/ciphers": "^2.0.1"
|
|
125
125
|
},
|
|
126
126
|
"devDependencies": {
|
|
127
|
-
"@powerlines/nx": "^0.10.
|
|
127
|
+
"@powerlines/nx": "^0.10.42",
|
|
128
128
|
"@storm-software/tsup": "^0.2.47",
|
|
129
129
|
"@types/node": "^24.10.1"
|
|
130
130
|
},
|
|
131
131
|
"publishConfig": { "access": "public" },
|
|
132
|
-
"gitHead": "
|
|
132
|
+
"gitHead": "1b998051f406f2465d5fbfd11594a41e170c0467"
|
|
133
133
|
}
|