@shell-shock/plugin-theme 0.4.17 → 0.4.18
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.
|
@@ -2,7 +2,6 @@ import { CommandBase, CommandOption } from "./command.cjs";
|
|
|
2
2
|
import { Context } from "./context.cjs";
|
|
3
3
|
import { OutputConfig } from "powerlines";
|
|
4
4
|
import { AutoMDPluginResolvedConfig } from "@powerlines/plugin-automd";
|
|
5
|
-
import { DeepkitPluginResolvedConfig, DeepkitPluginUserConfig } from "@powerlines/plugin-deepkit";
|
|
6
5
|
import { NodeJsPluginOptions, NodeJsPluginResolvedConfig, NodeJsPluginUserConfig } from "@powerlines/plugin-nodejs/types/plugin";
|
|
7
6
|
import { TsdownPluginResolvedConfig, TsdownPluginUserConfig } from "@powerlines/plugin-tsdown/types/plugin";
|
|
8
7
|
|
|
@@ -81,7 +80,7 @@ type OutputConfig$1 = Pick<OutputConfig, "path" | "copy" | "storage"> & {
|
|
|
81
80
|
/**
|
|
82
81
|
* The user configuration options for Shell Shock.
|
|
83
82
|
*/
|
|
84
|
-
type UserConfig = BaseOptions & Partial<NodeJsPluginUserConfig> &
|
|
83
|
+
type UserConfig = BaseOptions & Partial<NodeJsPluginUserConfig> & Pick<NodeJsPluginUserConfig, "root"> & {
|
|
85
84
|
/**
|
|
86
85
|
* Configuration for the output of the build process
|
|
87
86
|
*/
|
|
@@ -90,7 +89,7 @@ type UserConfig = BaseOptions & Partial<NodeJsPluginUserConfig> & Partial<Deepki
|
|
|
90
89
|
/**
|
|
91
90
|
* The resolved configuration options for Shell Shock.
|
|
92
91
|
*/
|
|
93
|
-
type ResolvedConfig = TsdownPluginResolvedConfig & AutoMDPluginResolvedConfig & NodeJsPluginResolvedConfig &
|
|
92
|
+
type ResolvedConfig = TsdownPluginResolvedConfig & AutoMDPluginResolvedConfig & NodeJsPluginResolvedConfig & Required<Omit<Options, "bin" | "reference">> & {
|
|
94
93
|
/**
|
|
95
94
|
* The name of the binary (the {@link https://docs.npmjs.com/cli/v11/configuring-npm/package-json#bin | "bin" field} in package.json) that will be used to run the application through NodeJs package managers (e.g., npm, yarn, pnpm).
|
|
96
95
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.d.cts","names":["CommandBase","CommandOption","Context","OutputConfig","OutputConfig$1","AutoMDPluginResolvedConfig","
|
|
1
|
+
{"version":3,"file":"config.d.cts","names":["CommandBase","CommandOption","Context","OutputConfig","OutputConfig$1","AutoMDPluginResolvedConfig","NodeJsPluginOptions","NodeJsPluginResolvedConfig","NodeJsPluginUserConfig","TsdownPluginResolvedConfig","TsdownPluginUserConfig","BuildOptions","Pick","ReferenceOptions","app","commands","BaseOptions","Partial","globalOptions","context","input","isCaseSensitive","bin","autoAssignEnv","reference","Options","dts","UserConfig","output","ResolvedConfig","Omit","Required","Record","appSpecificEnvPrefix","userConfig"],"sources":["../../../../../core/dist/types/config.d.cts"],"mappings":";;;;;;;;;KAQKW,YAAAA,GAAeC,IAAAA,CAAKF,sBAAAA;AAAAA,UACfG,gBAAAA;;;;EAIRC,GAAAA;EAJwB;;;;AAWhB;;EAARC,QAAAA;AAAAA;AAAAA,KAEGC,WAAAA,GAAcC,OAAAA,CAAQN,YAAAA;EAOTV;;;;;;EAAhBiB,aAAAA,GAAgBjB,aAAAA,OAAoBkB,OAAAA,EAASjB,OAAAA,EAASkB,KAAAA,EAAOpB,WAAAA,KAAgBC,aAAAA;EAP5DgB;;;;;EAajBI,eAAAA;EAN6DrB;;;;;;;;;;EAiB7DsB,GAAAA;EAsBU;;;;;;;;;EAZVC,aAAAA;EAYsD;;AAAA;;;;EALtDC,SAAAA,GAAYX,gBAAAA;AAAAA;;;;KAKTY,OAAAA,GAAUT,WAAAA,GAAcC,OAAAA,CAAQX,mBAAAA;;;;KAIhCH,cAAAA,GAAeS,IAAAA,CAAKR,YAAAA;EASOa;;;EAL9BS,GAAAA;AAAAA;;;;KAKGC,UAAAA,GAAaX,WAAAA,GAAcC,OAAAA,CAAQT,sBAAAA,IAA0BI,IAAAA,CAAKJ,sBAAAA;EAALI;;;EAIhEgB,MAAAA,GAASzB,cAAAA;AAAAA;;AAAY;;KAKlB0B,cAAAA,GAAiBpB,0BAAAA,GAA6BJ,0BAAAA,GAA6BE,0BAAAA,GAA6BwB,QAAAA,CAASD,IAAAA,CAAKL,OAAAA;EAArGhB;;;;;;;;;;EAWpBa,GAAAA,EAAKU,MAAAA;EAXevB;;;EAepBe,SAAAA,EAAWX,gBAAAA;EAfyGiB;;;EAmBpHG,oBAAAA;EAJAT;;;EAQAU,UAAAA,EAAYP,UAAAA;AAAAA"}
|
|
@@ -2,7 +2,6 @@ import { CommandBase, CommandOption } from "./command.mjs";
|
|
|
2
2
|
import { Context } from "./context.mjs";
|
|
3
3
|
import { OutputConfig } from "powerlines";
|
|
4
4
|
import { AutoMDPluginResolvedConfig } from "@powerlines/plugin-automd";
|
|
5
|
-
import { DeepkitPluginResolvedConfig, DeepkitPluginUserConfig } from "@powerlines/plugin-deepkit";
|
|
6
5
|
import { NodeJsPluginOptions, NodeJsPluginResolvedConfig, NodeJsPluginUserConfig } from "@powerlines/plugin-nodejs/types/plugin";
|
|
7
6
|
import { TsdownPluginResolvedConfig, TsdownPluginUserConfig } from "@powerlines/plugin-tsdown/types/plugin";
|
|
8
7
|
|
|
@@ -81,7 +80,7 @@ type OutputConfig$1 = Pick<OutputConfig, "path" | "copy" | "storage"> & {
|
|
|
81
80
|
/**
|
|
82
81
|
* The user configuration options for Shell Shock.
|
|
83
82
|
*/
|
|
84
|
-
type UserConfig = BaseOptions & Partial<NodeJsPluginUserConfig> &
|
|
83
|
+
type UserConfig = BaseOptions & Partial<NodeJsPluginUserConfig> & Pick<NodeJsPluginUserConfig, "root"> & {
|
|
85
84
|
/**
|
|
86
85
|
* Configuration for the output of the build process
|
|
87
86
|
*/
|
|
@@ -90,7 +89,7 @@ type UserConfig = BaseOptions & Partial<NodeJsPluginUserConfig> & Partial<Deepki
|
|
|
90
89
|
/**
|
|
91
90
|
* The resolved configuration options for Shell Shock.
|
|
92
91
|
*/
|
|
93
|
-
type ResolvedConfig = TsdownPluginResolvedConfig & AutoMDPluginResolvedConfig & NodeJsPluginResolvedConfig &
|
|
92
|
+
type ResolvedConfig = TsdownPluginResolvedConfig & AutoMDPluginResolvedConfig & NodeJsPluginResolvedConfig & Required<Omit<Options, "bin" | "reference">> & {
|
|
94
93
|
/**
|
|
95
94
|
* The name of the binary (the {@link https://docs.npmjs.com/cli/v11/configuring-npm/package-json#bin | "bin" field} in package.json) that will be used to run the application through NodeJs package managers (e.g., npm, yarn, pnpm).
|
|
96
95
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.d.mts","names":["CommandBase","CommandOption","Context","OutputConfig","OutputConfig$1","AutoMDPluginResolvedConfig","
|
|
1
|
+
{"version":3,"file":"config.d.mts","names":["CommandBase","CommandOption","Context","OutputConfig","OutputConfig$1","AutoMDPluginResolvedConfig","NodeJsPluginOptions","NodeJsPluginResolvedConfig","NodeJsPluginUserConfig","TsdownPluginResolvedConfig","TsdownPluginUserConfig","BuildOptions","Pick","ReferenceOptions","app","commands","BaseOptions","Partial","globalOptions","context","input","isCaseSensitive","bin","autoAssignEnv","reference","Options","dts","UserConfig","output","ResolvedConfig","Omit","Required","Record","appSpecificEnvPrefix","userConfig"],"sources":["../../../../../core/dist/types/config.d.cts"],"mappings":";;;;;;;;;KAQKW,YAAAA,GAAeC,IAAAA,CAAKF,sBAAAA;AAAAA,UACfG,gBAAAA;;;;EAIRC,GAAAA;EAJwB;;;;AAWhB;;EAARC,QAAAA;AAAAA;AAAAA,KAEGC,WAAAA,GAAcC,OAAAA,CAAQN,YAAAA;EAOTV;;;;;;EAAhBiB,aAAAA,GAAgBjB,aAAAA,OAAoBkB,OAAAA,EAASjB,OAAAA,EAASkB,KAAAA,EAAOpB,WAAAA,KAAgBC,aAAAA;EAP5DgB;;;;;EAajBI,eAAAA;EAN6DrB;;;;;;;;;;EAiB7DsB,GAAAA;EAsBU;;;;;;;;;EAZVC,aAAAA;EAYsD;;AAAA;;;;EALtDC,SAAAA,GAAYX,gBAAAA;AAAAA;;;;KAKTY,OAAAA,GAAUT,WAAAA,GAAcC,OAAAA,CAAQX,mBAAAA;;;;KAIhCH,cAAAA,GAAeS,IAAAA,CAAKR,YAAAA;EASOa;;;EAL9BS,GAAAA;AAAAA;;;;KAKGC,UAAAA,GAAaX,WAAAA,GAAcC,OAAAA,CAAQT,sBAAAA,IAA0BI,IAAAA,CAAKJ,sBAAAA;EAALI;;;EAIhEgB,MAAAA,GAASzB,cAAAA;AAAAA;;AAAY;;KAKlB0B,cAAAA,GAAiBpB,0BAAAA,GAA6BJ,0BAAAA,GAA6BE,0BAAAA,GAA6BwB,QAAAA,CAASD,IAAAA,CAAKL,OAAAA;EAArGhB;;;;;;;;;;EAWpBa,GAAAA,EAAKU,MAAAA;EAXevB;;;EAepBe,SAAAA,EAAWX,gBAAAA;EAfyGiB;;;EAmBpHG,oBAAAA;EAJAT;;;EAQAU,UAAAA,EAAYP,UAAAA;AAAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shell-shock/plugin-theme",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.18",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A package containing a Shell Shock plugin to generate source code given a list design tokens.",
|
|
6
6
|
"keywords": [
|
|
@@ -238,5 +238,5 @@
|
|
|
238
238
|
"@types/node": "^25.6.0"
|
|
239
239
|
},
|
|
240
240
|
"publishConfig": { "access": "public" },
|
|
241
|
-
"gitHead": "
|
|
241
|
+
"gitHead": "6ef904ba0c05e26d17cc27465a09c535d6fd6b3c"
|
|
242
242
|
}
|