@salty-css/core 0.0.1-alpha.320 → 0.0.1-alpha.322
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/class-name-generator-7NA8gtKo.cjs +73 -0
- package/class-name-generator-D7IidIMe.js +74 -0
- package/generators/index.cjs +3 -71
- package/generators/index.js +4 -71
- package/instances/classname-instance.cjs +31 -0
- package/instances/classname-instance.d.ts +10 -0
- package/instances/classname-instance.js +31 -0
- package/package.json +5 -1
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4
|
+
var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
5
|
+
const parseStyles = require("./parse-styles-gRr_iCy7.cjs");
|
|
6
|
+
const toHash = require("./to-hash-DT2ImSPA.cjs");
|
|
7
|
+
class StylesGenerator {
|
|
8
|
+
constructor(params) {
|
|
9
|
+
__publicField(this, "buildContext", {});
|
|
10
|
+
this.params = params;
|
|
11
|
+
}
|
|
12
|
+
get priority() {
|
|
13
|
+
return 0;
|
|
14
|
+
}
|
|
15
|
+
get isRoot() {
|
|
16
|
+
return this.priority === 0;
|
|
17
|
+
}
|
|
18
|
+
get hash() {
|
|
19
|
+
const { base, variants, compoundVariants, anyOfVariants } = this.params;
|
|
20
|
+
return toHash.toHash({ base, variants, compoundVariants, anyOfVariants });
|
|
21
|
+
}
|
|
22
|
+
get cssClassName() {
|
|
23
|
+
return this.hash;
|
|
24
|
+
}
|
|
25
|
+
get classNames() {
|
|
26
|
+
const classNames = /* @__PURE__ */ new Set([this.cssClassName]);
|
|
27
|
+
const { className } = this.params;
|
|
28
|
+
if (typeof className == "string") classNames.add(className);
|
|
29
|
+
if (typeof className == "object") className.forEach((c) => classNames.add(c));
|
|
30
|
+
this.getTemplateClasses().forEach((c) => classNames.add(c));
|
|
31
|
+
if (this.buildContext.classNames) this.buildContext.classNames.forEach((c) => classNames.add(c));
|
|
32
|
+
return [...classNames].join(" ");
|
|
33
|
+
}
|
|
34
|
+
get cssFileName() {
|
|
35
|
+
const { callerName } = this.buildContext;
|
|
36
|
+
if (callerName) {
|
|
37
|
+
const dasherized = toHash.dashCase(callerName);
|
|
38
|
+
return `cl_${dasherized}-${this.hash}.css`;
|
|
39
|
+
}
|
|
40
|
+
return `${this.hash}.css`;
|
|
41
|
+
}
|
|
42
|
+
get css() {
|
|
43
|
+
const { base = {}, variants = {}, compoundVariants = [], anyOfVariants = [] } = this.params;
|
|
44
|
+
const { config } = this.buildContext;
|
|
45
|
+
const combinedStyles = { ...base, variants, compoundVariants, anyOfVariants };
|
|
46
|
+
const css = parseStyles.parseAndJoinStyles(combinedStyles, `.${this.cssClassName}`, config, this.isRoot);
|
|
47
|
+
return css;
|
|
48
|
+
}
|
|
49
|
+
getTemplateClasses(config = this.buildContext.config) {
|
|
50
|
+
if (!(config == null ? void 0 : config.templates) || !this.params.base || this.priority > 0) return [];
|
|
51
|
+
const templateKeys = Object.keys(config.templates);
|
|
52
|
+
return Object.entries(this.params.base).reduce((acc, [key, value]) => {
|
|
53
|
+
if (templateKeys.includes(key)) acc.push("t_" + toHash.toHash(toHash.dashCase(`${key}-${value}`), 4));
|
|
54
|
+
return acc;
|
|
55
|
+
}, []);
|
|
56
|
+
}
|
|
57
|
+
_withBuildContext(context) {
|
|
58
|
+
this.buildContext = context;
|
|
59
|
+
return this;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
class ClassNameGenerator extends StylesGenerator {
|
|
63
|
+
constructor(_params) {
|
|
64
|
+
super(_params);
|
|
65
|
+
this._params = _params;
|
|
66
|
+
}
|
|
67
|
+
get priority() {
|
|
68
|
+
if (this.params.priority) return this.params.priority;
|
|
69
|
+
return 0;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
exports.ClassNameGenerator = ClassNameGenerator;
|
|
73
|
+
exports.StylesGenerator = StylesGenerator;
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3
|
+
var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
4
|
+
import { p as parseAndJoinStyles } from "./parse-styles-CS97_e4S.js";
|
|
5
|
+
import { t as toHash, d as dashCase } from "./to-hash-DSoCPs8D.js";
|
|
6
|
+
class StylesGenerator {
|
|
7
|
+
constructor(params) {
|
|
8
|
+
__publicField(this, "buildContext", {});
|
|
9
|
+
this.params = params;
|
|
10
|
+
}
|
|
11
|
+
get priority() {
|
|
12
|
+
return 0;
|
|
13
|
+
}
|
|
14
|
+
get isRoot() {
|
|
15
|
+
return this.priority === 0;
|
|
16
|
+
}
|
|
17
|
+
get hash() {
|
|
18
|
+
const { base, variants, compoundVariants, anyOfVariants } = this.params;
|
|
19
|
+
return toHash({ base, variants, compoundVariants, anyOfVariants });
|
|
20
|
+
}
|
|
21
|
+
get cssClassName() {
|
|
22
|
+
return this.hash;
|
|
23
|
+
}
|
|
24
|
+
get classNames() {
|
|
25
|
+
const classNames = /* @__PURE__ */ new Set([this.cssClassName]);
|
|
26
|
+
const { className } = this.params;
|
|
27
|
+
if (typeof className == "string") classNames.add(className);
|
|
28
|
+
if (typeof className == "object") className.forEach((c) => classNames.add(c));
|
|
29
|
+
this.getTemplateClasses().forEach((c) => classNames.add(c));
|
|
30
|
+
if (this.buildContext.classNames) this.buildContext.classNames.forEach((c) => classNames.add(c));
|
|
31
|
+
return [...classNames].join(" ");
|
|
32
|
+
}
|
|
33
|
+
get cssFileName() {
|
|
34
|
+
const { callerName } = this.buildContext;
|
|
35
|
+
if (callerName) {
|
|
36
|
+
const dasherized = dashCase(callerName);
|
|
37
|
+
return `cl_${dasherized}-${this.hash}.css`;
|
|
38
|
+
}
|
|
39
|
+
return `${this.hash}.css`;
|
|
40
|
+
}
|
|
41
|
+
get css() {
|
|
42
|
+
const { base = {}, variants = {}, compoundVariants = [], anyOfVariants = [] } = this.params;
|
|
43
|
+
const { config } = this.buildContext;
|
|
44
|
+
const combinedStyles = { ...base, variants, compoundVariants, anyOfVariants };
|
|
45
|
+
const css = parseAndJoinStyles(combinedStyles, `.${this.cssClassName}`, config, this.isRoot);
|
|
46
|
+
return css;
|
|
47
|
+
}
|
|
48
|
+
getTemplateClasses(config = this.buildContext.config) {
|
|
49
|
+
if (!(config == null ? void 0 : config.templates) || !this.params.base || this.priority > 0) return [];
|
|
50
|
+
const templateKeys = Object.keys(config.templates);
|
|
51
|
+
return Object.entries(this.params.base).reduce((acc, [key, value]) => {
|
|
52
|
+
if (templateKeys.includes(key)) acc.push("t_" + toHash(dashCase(`${key}-${value}`), 4));
|
|
53
|
+
return acc;
|
|
54
|
+
}, []);
|
|
55
|
+
}
|
|
56
|
+
_withBuildContext(context) {
|
|
57
|
+
this.buildContext = context;
|
|
58
|
+
return this;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
class ClassNameGenerator extends StylesGenerator {
|
|
62
|
+
constructor(_params) {
|
|
63
|
+
super(_params);
|
|
64
|
+
this._params = _params;
|
|
65
|
+
}
|
|
66
|
+
get priority() {
|
|
67
|
+
if (this.params.priority) return this.params.priority;
|
|
68
|
+
return 0;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
export {
|
|
72
|
+
ClassNameGenerator as C,
|
|
73
|
+
StylesGenerator as S
|
|
74
|
+
};
|
package/generators/index.cjs
CHANGED
|
@@ -1,76 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4
|
-
var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
5
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
6
|
-
const
|
|
3
|
+
const classNameGenerator = require("../class-name-generator-7NA8gtKo.cjs");
|
|
7
4
|
const toHash = require("../to-hash-DT2ImSPA.cjs");
|
|
8
|
-
class StylesGenerator {
|
|
9
|
-
constructor(params) {
|
|
10
|
-
__publicField(this, "buildContext", {});
|
|
11
|
-
this.params = params;
|
|
12
|
-
}
|
|
13
|
-
get priority() {
|
|
14
|
-
return 0;
|
|
15
|
-
}
|
|
16
|
-
get isRoot() {
|
|
17
|
-
return this.priority === 0;
|
|
18
|
-
}
|
|
19
|
-
get hash() {
|
|
20
|
-
const { base, variants, compoundVariants, anyOfVariants } = this.params;
|
|
21
|
-
return toHash.toHash({ base, variants, compoundVariants, anyOfVariants });
|
|
22
|
-
}
|
|
23
|
-
get cssClassName() {
|
|
24
|
-
return this.hash;
|
|
25
|
-
}
|
|
26
|
-
get classNames() {
|
|
27
|
-
const classNames = /* @__PURE__ */ new Set([this.cssClassName]);
|
|
28
|
-
const { className } = this.params;
|
|
29
|
-
if (typeof className == "string") classNames.add(className);
|
|
30
|
-
if (typeof className == "object") className.forEach((c) => classNames.add(c));
|
|
31
|
-
this.getTemplateClasses().forEach((c) => classNames.add(c));
|
|
32
|
-
if (this.buildContext.classNames) this.buildContext.classNames.forEach((c) => classNames.add(c));
|
|
33
|
-
return [...classNames].join(" ");
|
|
34
|
-
}
|
|
35
|
-
get cssFileName() {
|
|
36
|
-
const { callerName } = this.buildContext;
|
|
37
|
-
if (callerName) {
|
|
38
|
-
const dasherized = toHash.dashCase(callerName);
|
|
39
|
-
return `cl_${dasherized}-${this.hash}.css`;
|
|
40
|
-
}
|
|
41
|
-
return `${this.hash}.css`;
|
|
42
|
-
}
|
|
43
|
-
get css() {
|
|
44
|
-
const { base = {}, variants = {}, compoundVariants = [], anyOfVariants = [] } = this.params;
|
|
45
|
-
const { config } = this.buildContext;
|
|
46
|
-
const combinedStyles = { ...base, variants, compoundVariants, anyOfVariants };
|
|
47
|
-
const css = parseStyles.parseAndJoinStyles(combinedStyles, `.${this.cssClassName}`, config, this.isRoot);
|
|
48
|
-
return css;
|
|
49
|
-
}
|
|
50
|
-
getTemplateClasses(config = this.buildContext.config) {
|
|
51
|
-
if (!(config == null ? void 0 : config.templates) || !this.params.base || this.priority > 0) return [];
|
|
52
|
-
const templateKeys = Object.keys(config.templates);
|
|
53
|
-
return Object.entries(this.params.base).reduce((acc, [key, value]) => {
|
|
54
|
-
if (templateKeys.includes(key)) acc.push("t_" + toHash.toHash(toHash.dashCase(`${key}-${value}`), 4));
|
|
55
|
-
return acc;
|
|
56
|
-
}, []);
|
|
57
|
-
}
|
|
58
|
-
_withBuildContext(context) {
|
|
59
|
-
this.buildContext = context;
|
|
60
|
-
return this;
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
class ClassNameGenerator extends StylesGenerator {
|
|
64
|
-
constructor(_params) {
|
|
65
|
-
super(_params);
|
|
66
|
-
this._params = _params;
|
|
67
|
-
}
|
|
68
|
-
get priority() {
|
|
69
|
-
if (this.params.priority) return this.params.priority;
|
|
70
|
-
return 0;
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
class StyledGenerator extends StylesGenerator {
|
|
5
|
+
class StyledGenerator extends classNameGenerator.StylesGenerator {
|
|
74
6
|
constructor(tagName, _params) {
|
|
75
7
|
super(_params);
|
|
76
8
|
this.tagName = tagName;
|
|
@@ -121,5 +53,5 @@ class StyledGenerator extends StylesGenerator {
|
|
|
121
53
|
};
|
|
122
54
|
}
|
|
123
55
|
}
|
|
124
|
-
exports.ClassNameGenerator = ClassNameGenerator;
|
|
56
|
+
exports.ClassNameGenerator = classNameGenerator.ClassNameGenerator;
|
|
125
57
|
exports.StyledGenerator = StyledGenerator;
|
package/generators/index.js
CHANGED
|
@@ -1,73 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
import { p as parseAndJoinStyles } from "../parse-styles-CS97_e4S.js";
|
|
5
|
-
import { t as toHash, d as dashCase } from "../to-hash-DSoCPs8D.js";
|
|
6
|
-
class StylesGenerator {
|
|
7
|
-
constructor(params) {
|
|
8
|
-
__publicField(this, "buildContext", {});
|
|
9
|
-
this.params = params;
|
|
10
|
-
}
|
|
11
|
-
get priority() {
|
|
12
|
-
return 0;
|
|
13
|
-
}
|
|
14
|
-
get isRoot() {
|
|
15
|
-
return this.priority === 0;
|
|
16
|
-
}
|
|
17
|
-
get hash() {
|
|
18
|
-
const { base, variants, compoundVariants, anyOfVariants } = this.params;
|
|
19
|
-
return toHash({ base, variants, compoundVariants, anyOfVariants });
|
|
20
|
-
}
|
|
21
|
-
get cssClassName() {
|
|
22
|
-
return this.hash;
|
|
23
|
-
}
|
|
24
|
-
get classNames() {
|
|
25
|
-
const classNames = /* @__PURE__ */ new Set([this.cssClassName]);
|
|
26
|
-
const { className } = this.params;
|
|
27
|
-
if (typeof className == "string") classNames.add(className);
|
|
28
|
-
if (typeof className == "object") className.forEach((c) => classNames.add(c));
|
|
29
|
-
this.getTemplateClasses().forEach((c) => classNames.add(c));
|
|
30
|
-
if (this.buildContext.classNames) this.buildContext.classNames.forEach((c) => classNames.add(c));
|
|
31
|
-
return [...classNames].join(" ");
|
|
32
|
-
}
|
|
33
|
-
get cssFileName() {
|
|
34
|
-
const { callerName } = this.buildContext;
|
|
35
|
-
if (callerName) {
|
|
36
|
-
const dasherized = dashCase(callerName);
|
|
37
|
-
return `cl_${dasherized}-${this.hash}.css`;
|
|
38
|
-
}
|
|
39
|
-
return `${this.hash}.css`;
|
|
40
|
-
}
|
|
41
|
-
get css() {
|
|
42
|
-
const { base = {}, variants = {}, compoundVariants = [], anyOfVariants = [] } = this.params;
|
|
43
|
-
const { config } = this.buildContext;
|
|
44
|
-
const combinedStyles = { ...base, variants, compoundVariants, anyOfVariants };
|
|
45
|
-
const css = parseAndJoinStyles(combinedStyles, `.${this.cssClassName}`, config, this.isRoot);
|
|
46
|
-
return css;
|
|
47
|
-
}
|
|
48
|
-
getTemplateClasses(config = this.buildContext.config) {
|
|
49
|
-
if (!(config == null ? void 0 : config.templates) || !this.params.base || this.priority > 0) return [];
|
|
50
|
-
const templateKeys = Object.keys(config.templates);
|
|
51
|
-
return Object.entries(this.params.base).reduce((acc, [key, value]) => {
|
|
52
|
-
if (templateKeys.includes(key)) acc.push("t_" + toHash(dashCase(`${key}-${value}`), 4));
|
|
53
|
-
return acc;
|
|
54
|
-
}, []);
|
|
55
|
-
}
|
|
56
|
-
_withBuildContext(context) {
|
|
57
|
-
this.buildContext = context;
|
|
58
|
-
return this;
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
class ClassNameGenerator extends StylesGenerator {
|
|
62
|
-
constructor(_params) {
|
|
63
|
-
super(_params);
|
|
64
|
-
this._params = _params;
|
|
65
|
-
}
|
|
66
|
-
get priority() {
|
|
67
|
-
if (this.params.priority) return this.params.priority;
|
|
68
|
-
return 0;
|
|
69
|
-
}
|
|
70
|
-
}
|
|
1
|
+
import { S as StylesGenerator } from "../class-name-generator-D7IidIMe.js";
|
|
2
|
+
import { C } from "../class-name-generator-D7IidIMe.js";
|
|
3
|
+
import { d as dashCase } from "../to-hash-DSoCPs8D.js";
|
|
71
4
|
class StyledGenerator extends StylesGenerator {
|
|
72
5
|
constructor(tagName, _params) {
|
|
73
6
|
super(_params);
|
|
@@ -120,6 +53,6 @@ class StyledGenerator extends StylesGenerator {
|
|
|
120
53
|
}
|
|
121
54
|
}
|
|
122
55
|
export {
|
|
123
|
-
ClassNameGenerator,
|
|
56
|
+
C as ClassNameGenerator,
|
|
124
57
|
StyledGenerator
|
|
125
58
|
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const classNameGenerator = require("../class-name-generator-7NA8gtKo.cjs");
|
|
4
|
+
const classNameInstance = (params) => {
|
|
5
|
+
const generator = new classNameGenerator.ClassNameGenerator(params);
|
|
6
|
+
const createClass = (classNameStr) => {
|
|
7
|
+
const str = new String(classNameStr);
|
|
8
|
+
Object.assign(str, {
|
|
9
|
+
get isClassName() {
|
|
10
|
+
return true;
|
|
11
|
+
},
|
|
12
|
+
variant: (name, value) => {
|
|
13
|
+
const variantClass = `${name}-${value}`;
|
|
14
|
+
const combinedClass = `${str} ${variantClass}`;
|
|
15
|
+
return createClass(combinedClass);
|
|
16
|
+
},
|
|
17
|
+
variants: (variants) => {
|
|
18
|
+
const variantClasses = Object.entries(variants).reduce((acc, [name, value]) => {
|
|
19
|
+
acc += ` ${name}-${value}`;
|
|
20
|
+
return acc;
|
|
21
|
+
}, "");
|
|
22
|
+
const combinedClass = `${str}${variantClasses}`.trim();
|
|
23
|
+
return createClass(combinedClass);
|
|
24
|
+
},
|
|
25
|
+
generator
|
|
26
|
+
});
|
|
27
|
+
return str;
|
|
28
|
+
};
|
|
29
|
+
return createClass(generator.cssClassName);
|
|
30
|
+
};
|
|
31
|
+
exports.classNameInstance = classNameInstance;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ClassNameGenerator } from '../generators';
|
|
2
|
+
import { StyledParams } from '../types';
|
|
3
|
+
interface ClassNameMethods<STYLE_PARAMS extends StyledParams> {
|
|
4
|
+
generator: ClassNameGenerator<STYLE_PARAMS>;
|
|
5
|
+
isClassName: boolean;
|
|
6
|
+
variant: (name: string, value: string) => string & ClassNameFunction<STYLE_PARAMS>;
|
|
7
|
+
}
|
|
8
|
+
type ClassNameFunction<STYLE_PARAMS extends StyledParams> = string & ClassNameMethods<STYLE_PARAMS>;
|
|
9
|
+
export declare const classNameInstance: <const STYLE_PARAMS extends StyledParams>(params: STYLE_PARAMS) => ClassNameFunction<STYLE_PARAMS>;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { C as ClassNameGenerator } from "../class-name-generator-D7IidIMe.js";
|
|
2
|
+
const classNameInstance = (params) => {
|
|
3
|
+
const generator = new ClassNameGenerator(params);
|
|
4
|
+
const createClass = (classNameStr) => {
|
|
5
|
+
const str = new String(classNameStr);
|
|
6
|
+
Object.assign(str, {
|
|
7
|
+
get isClassName() {
|
|
8
|
+
return true;
|
|
9
|
+
},
|
|
10
|
+
variant: (name, value) => {
|
|
11
|
+
const variantClass = `${name}-${value}`;
|
|
12
|
+
const combinedClass = `${str} ${variantClass}`;
|
|
13
|
+
return createClass(combinedClass);
|
|
14
|
+
},
|
|
15
|
+
variants: (variants) => {
|
|
16
|
+
const variantClasses = Object.entries(variants).reduce((acc, [name, value]) => {
|
|
17
|
+
acc += ` ${name}-${value}`;
|
|
18
|
+
return acc;
|
|
19
|
+
}, "");
|
|
20
|
+
const combinedClass = `${str}${variantClasses}`.trim();
|
|
21
|
+
return createClass(combinedClass);
|
|
22
|
+
},
|
|
23
|
+
generator
|
|
24
|
+
});
|
|
25
|
+
return str;
|
|
26
|
+
};
|
|
27
|
+
return createClass(generator.cssClassName);
|
|
28
|
+
};
|
|
29
|
+
export {
|
|
30
|
+
classNameInstance
|
|
31
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salty-css/core",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.322",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"module": "./dist/index.mjs",
|
|
6
6
|
"typings": "./dist/index.d.ts",
|
|
@@ -118,6 +118,10 @@
|
|
|
118
118
|
"./cache/resolve-dynamic-config-cache": {
|
|
119
119
|
"import": "./cache/resolve-dynamic-config-cache.js",
|
|
120
120
|
"require": "./cache/resolve-dynamic-config-cache.cjs"
|
|
121
|
+
},
|
|
122
|
+
"./instances/classname-instance": {
|
|
123
|
+
"import": "./instances/classname-instance.js",
|
|
124
|
+
"require": "./instances/classname-instance.cjs"
|
|
121
125
|
}
|
|
122
126
|
},
|
|
123
127
|
"bin": {
|