@powerlines/plugin-date 0.12.142 → 0.12.143
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 +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/{plugin-CuNMs4r-.d.mts → plugin-Bb-hCaYN.d.mts} +8 -1
- package/dist/{plugin-BUfZ6cT1.d.cts → plugin-BmurFkyw.d.cts} +8 -1
- package/dist/types/index.d.cts +1 -1
- package/dist/types/index.d.mts +1 -1
- package/dist/types/plugin.d.cts +1 -1
- package/dist/types/plugin.d.mts +1 -1
- package/package.json +5 -5
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as DatePluginUserConfig, c as __ΩDatePluginOptions, d as Plugin, i as DatePluginResolvedConfig, l as __ΩDatePluginResolvedConfig, n as DatePluginContext, o as __ΩDateLibraryType, r as DatePluginOptions, s as __ΩDatePluginContext, t as DateLibraryType, u as __ΩDatePluginUserConfig } from "./plugin-
|
|
1
|
+
import { a as DatePluginUserConfig, c as __ΩDatePluginOptions, d as Plugin, i as DatePluginResolvedConfig, l as __ΩDatePluginResolvedConfig, n as DatePluginContext, o as __ΩDateLibraryType, r as DatePluginOptions, s as __ΩDatePluginContext, t as DateLibraryType, u as __ΩDatePluginUserConfig } from "./plugin-BmurFkyw.cjs";
|
|
2
2
|
import { a as __ΩStormDateInterface, i as __ΩDateFormats, n as StormDateInterface, o as __ΩTimeUnit, r as TimeUnit, t as DateFormats } from "./runtime-B8LVkjWB.cjs";
|
|
3
3
|
import "./index-CmCelmEL.cjs";
|
|
4
4
|
|
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as DatePluginUserConfig, c as __ΩDatePluginOptions, d as Plugin, i as DatePluginResolvedConfig, l as __ΩDatePluginResolvedConfig, n as DatePluginContext, o as __ΩDateLibraryType, r as DatePluginOptions, s as __ΩDatePluginContext, t as DateLibraryType, u as __ΩDatePluginUserConfig } from "./plugin-
|
|
1
|
+
import { a as DatePluginUserConfig, c as __ΩDatePluginOptions, d as Plugin, i as DatePluginResolvedConfig, l as __ΩDatePluginResolvedConfig, n as DatePluginContext, o as __ΩDateLibraryType, r as DatePluginOptions, s as __ΩDatePluginContext, t as DateLibraryType, u as __ΩDatePluginUserConfig } from "./plugin-Bb-hCaYN.mjs";
|
|
2
2
|
import { a as __ΩStormDateInterface, i as __ΩDateFormats, n as StormDateInterface, o as __ΩTimeUnit, r as TimeUnit, t as DateFormats } from "./runtime-CiYq8JJ6.mjs";
|
|
3
3
|
import "./index-CA4VvAY_.mjs";
|
|
4
4
|
|
|
@@ -970,6 +970,13 @@ interface CommonUserConfig extends BaseConfig {
|
|
|
970
970
|
* If this option is not provided, the build process will try to use the \`description\` value from the `\package.json\` file.
|
|
971
971
|
*/
|
|
972
972
|
description?: string;
|
|
973
|
+
/**
|
|
974
|
+
* The organization or author of the project
|
|
975
|
+
*
|
|
976
|
+
* @remarks
|
|
977
|
+
* If this option is not provided, the build process will try to use the \`author\` value from the \`package.json\` file. If the \`author\` value cannot be determined, the {@link name | name configuration} will be used.
|
|
978
|
+
*/
|
|
979
|
+
organization?: string;
|
|
973
980
|
/**
|
|
974
981
|
* The date to use for compatibility checks
|
|
975
982
|
*
|
|
@@ -1126,7 +1133,7 @@ type OutputResolvedConfig = Required<Omit<OutputConfig, "assets" | "storage"> &
|
|
|
1126
1133
|
/**
|
|
1127
1134
|
* The resolved options for the Powerlines project configuration.
|
|
1128
1135
|
*/
|
|
1129
|
-
type ResolvedConfig<TUserConfig extends UserConfig = UserConfig> = Omit<TUserConfig, "name" | "title" | "compatibilityDate" | "plugins" | "mode" | "environments" | "platform" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "variant" | "type" | "output" | "logLevel" | "framework" | "sourceRoot"> & Required<Pick<TUserConfig, "name" | "title" | "compatibilityDate" | "plugins" | "mode" | "environments" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "framework" | "sourceRoot">> & {
|
|
1136
|
+
type ResolvedConfig<TUserConfig extends UserConfig = UserConfig> = Omit<TUserConfig, "name" | "title" | "organization" | "compatibilityDate" | "plugins" | "mode" | "environments" | "platform" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "variant" | "type" | "output" | "logLevel" | "framework" | "sourceRoot"> & Required<Pick<TUserConfig, "name" | "title" | "organization" | "compatibilityDate" | "plugins" | "mode" | "environments" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "framework" | "sourceRoot">> & {
|
|
1130
1137
|
/**
|
|
1131
1138
|
* The configuration options that were provided inline to the Powerlines CLI.
|
|
1132
1139
|
*/
|
|
@@ -968,6 +968,13 @@ interface CommonUserConfig extends BaseConfig {
|
|
|
968
968
|
* If this option is not provided, the build process will try to use the \`description\` value from the `\package.json\` file.
|
|
969
969
|
*/
|
|
970
970
|
description?: string;
|
|
971
|
+
/**
|
|
972
|
+
* The organization or author of the project
|
|
973
|
+
*
|
|
974
|
+
* @remarks
|
|
975
|
+
* If this option is not provided, the build process will try to use the \`author\` value from the \`package.json\` file. If the \`author\` value cannot be determined, the {@link name | name configuration} will be used.
|
|
976
|
+
*/
|
|
977
|
+
organization?: string;
|
|
971
978
|
/**
|
|
972
979
|
* The date to use for compatibility checks
|
|
973
980
|
*
|
|
@@ -1124,7 +1131,7 @@ type OutputResolvedConfig = Required<Omit<OutputConfig, "assets" | "storage"> &
|
|
|
1124
1131
|
/**
|
|
1125
1132
|
* The resolved options for the Powerlines project configuration.
|
|
1126
1133
|
*/
|
|
1127
|
-
type ResolvedConfig<TUserConfig extends UserConfig = UserConfig> = Omit<TUserConfig, "name" | "title" | "compatibilityDate" | "plugins" | "mode" | "environments" | "platform" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "variant" | "type" | "output" | "logLevel" | "framework" | "sourceRoot"> & Required<Pick<TUserConfig, "name" | "title" | "compatibilityDate" | "plugins" | "mode" | "environments" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "framework" | "sourceRoot">> & {
|
|
1134
|
+
type ResolvedConfig<TUserConfig extends UserConfig = UserConfig> = Omit<TUserConfig, "name" | "title" | "organization" | "compatibilityDate" | "plugins" | "mode" | "environments" | "platform" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "variant" | "type" | "output" | "logLevel" | "framework" | "sourceRoot"> & Required<Pick<TUserConfig, "name" | "title" | "organization" | "compatibilityDate" | "plugins" | "mode" | "environments" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "framework" | "sourceRoot">> & {
|
|
1128
1135
|
/**
|
|
1129
1136
|
* The configuration options that were provided inline to the Powerlines CLI.
|
|
1130
1137
|
*/
|
package/dist/types/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as DatePluginUserConfig, c as __ΩDatePluginOptions, i as DatePluginResolvedConfig, l as __ΩDatePluginResolvedConfig, n as DatePluginContext, o as __ΩDateLibraryType, r as DatePluginOptions, s as __ΩDatePluginContext, t as DateLibraryType, u as __ΩDatePluginUserConfig } from "../plugin-
|
|
1
|
+
import { a as DatePluginUserConfig, c as __ΩDatePluginOptions, i as DatePluginResolvedConfig, l as __ΩDatePluginResolvedConfig, n as DatePluginContext, o as __ΩDateLibraryType, r as DatePluginOptions, s as __ΩDatePluginContext, t as DateLibraryType, u as __ΩDatePluginUserConfig } from "../plugin-BmurFkyw.cjs";
|
|
2
2
|
import { a as __ΩStormDateInterface, i as __ΩDateFormats, n as StormDateInterface, o as __ΩTimeUnit, r as TimeUnit, t as DateFormats } from "../runtime-B8LVkjWB.cjs";
|
|
3
3
|
import "../index-CmCelmEL.cjs";
|
|
4
4
|
export { DateFormats, DateLibraryType, DatePluginContext, DatePluginOptions, DatePluginResolvedConfig, DatePluginUserConfig, StormDateInterface, TimeUnit, __ΩDateFormats, __ΩDateLibraryType, __ΩDatePluginContext, __ΩDatePluginOptions, __ΩDatePluginResolvedConfig, __ΩDatePluginUserConfig, __ΩStormDateInterface, __ΩTimeUnit };
|
package/dist/types/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as DatePluginUserConfig, c as __ΩDatePluginOptions, i as DatePluginResolvedConfig, l as __ΩDatePluginResolvedConfig, n as DatePluginContext, o as __ΩDateLibraryType, r as DatePluginOptions, s as __ΩDatePluginContext, t as DateLibraryType, u as __ΩDatePluginUserConfig } from "../plugin-
|
|
1
|
+
import { a as DatePluginUserConfig, c as __ΩDatePluginOptions, i as DatePluginResolvedConfig, l as __ΩDatePluginResolvedConfig, n as DatePluginContext, o as __ΩDateLibraryType, r as DatePluginOptions, s as __ΩDatePluginContext, t as DateLibraryType, u as __ΩDatePluginUserConfig } from "../plugin-Bb-hCaYN.mjs";
|
|
2
2
|
import { a as __ΩStormDateInterface, i as __ΩDateFormats, n as StormDateInterface, o as __ΩTimeUnit, r as TimeUnit, t as DateFormats } from "../runtime-CiYq8JJ6.mjs";
|
|
3
3
|
import "../index-CA4VvAY_.mjs";
|
|
4
4
|
export { DateFormats, DateLibraryType, DatePluginContext, DatePluginOptions, DatePluginResolvedConfig, DatePluginUserConfig, StormDateInterface, TimeUnit, __ΩDateFormats, __ΩDateLibraryType, __ΩDatePluginContext, __ΩDatePluginOptions, __ΩDatePluginResolvedConfig, __ΩDatePluginUserConfig, __ΩStormDateInterface, __ΩTimeUnit };
|
package/dist/types/plugin.d.cts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as DatePluginUserConfig, c as __ΩDatePluginOptions, i as DatePluginResolvedConfig, l as __ΩDatePluginResolvedConfig, n as DatePluginContext, o as __ΩDateLibraryType, r as DatePluginOptions, s as __ΩDatePluginContext, t as DateLibraryType, u as __ΩDatePluginUserConfig } from "../plugin-
|
|
1
|
+
import { a as DatePluginUserConfig, c as __ΩDatePluginOptions, i as DatePluginResolvedConfig, l as __ΩDatePluginResolvedConfig, n as DatePluginContext, o as __ΩDateLibraryType, r as DatePluginOptions, s as __ΩDatePluginContext, t as DateLibraryType, u as __ΩDatePluginUserConfig } from "../plugin-BmurFkyw.cjs";
|
|
2
2
|
export { DateLibraryType, DatePluginContext, DatePluginOptions, DatePluginResolvedConfig, DatePluginUserConfig, __ΩDateLibraryType, __ΩDatePluginContext, __ΩDatePluginOptions, __ΩDatePluginResolvedConfig, __ΩDatePluginUserConfig };
|
package/dist/types/plugin.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as DatePluginUserConfig, c as __ΩDatePluginOptions, i as DatePluginResolvedConfig, l as __ΩDatePluginResolvedConfig, n as DatePluginContext, o as __ΩDateLibraryType, r as DatePluginOptions, s as __ΩDatePluginContext, t as DateLibraryType, u as __ΩDatePluginUserConfig } from "../plugin-
|
|
1
|
+
import { a as DatePluginUserConfig, c as __ΩDatePluginOptions, i as DatePluginResolvedConfig, l as __ΩDatePluginResolvedConfig, n as DatePluginContext, o as __ΩDateLibraryType, r as DatePluginOptions, s as __ΩDatePluginContext, t as DateLibraryType, u as __ΩDatePluginUserConfig } from "../plugin-Bb-hCaYN.mjs";
|
|
2
2
|
export { DateLibraryType, DatePluginContext, DatePluginOptions, DatePluginResolvedConfig, DatePluginUserConfig, __ΩDateLibraryType, __ΩDatePluginContext, __ΩDatePluginOptions, __ΩDatePluginResolvedConfig, __ΩDatePluginUserConfig };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-date",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.143",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin for injecting static .env configuration values to the code so that they're accessible at runtime.",
|
|
6
6
|
"repository": {
|
|
@@ -128,15 +128,15 @@
|
|
|
128
128
|
"files": ["dist/**/*"],
|
|
129
129
|
"keywords": ["powerlines", "storm-software", "powerlines-plugin"],
|
|
130
130
|
"dependencies": {
|
|
131
|
-
"@powerlines/plugin-env": "^0.15.
|
|
131
|
+
"@powerlines/plugin-env": "^0.15.5",
|
|
132
132
|
"@storm-software/config-tools": "^1.188.75",
|
|
133
133
|
"@stryke/path": "^0.24.1",
|
|
134
|
-
"powerlines": "^0.36.
|
|
134
|
+
"powerlines": "^0.36.27"
|
|
135
135
|
},
|
|
136
136
|
"devDependencies": {
|
|
137
|
-
"@powerlines/nx": "^0.11.
|
|
137
|
+
"@powerlines/nx": "^0.11.53",
|
|
138
138
|
"@types/node": "^24.10.4"
|
|
139
139
|
},
|
|
140
140
|
"publishConfig": { "access": "public" },
|
|
141
|
-
"gitHead": "
|
|
141
|
+
"gitHead": "fbc59ce584fd0f78d90d2dbaa18f9c9267bd3b61"
|
|
142
142
|
}
|