@elliemae/ds-legacy-icon 1.0.0-rc.1
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/cjs/DSIconColor.js +44 -0
- package/dist/cjs/DSIconColor.js.map +7 -0
- package/dist/cjs/DSIconSize.js +45 -0
- package/dist/cjs/DSIconSize.js.map +7 -0
- package/dist/cjs/index.js +45 -0
- package/dist/cjs/index.js.map +7 -0
- package/dist/cjs/package.json +7 -0
- package/dist/esm/DSIconColor.js +14 -0
- package/dist/esm/DSIconColor.js.map +7 -0
- package/dist/esm/DSIconSize.js +15 -0
- package/dist/esm/DSIconSize.js.map +7 -0
- package/dist/esm/index.js +15 -0
- package/dist/esm/index.js.map +7 -0
- package/dist/esm/package.json +7 -0
- package/dist/types/DSIconColor.d.ts +9 -0
- package/dist/types/DSIconSize.d.ts +10 -0
- package/dist/types/index.d.ts +22 -0
- package/package.json +69 -0
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
var DSIconColor_exports = {};
|
|
30
|
+
__export(DSIconColor_exports, {
|
|
31
|
+
default: () => DSIconColor_default
|
|
32
|
+
});
|
|
33
|
+
module.exports = __toCommonJS(DSIconColor_exports);
|
|
34
|
+
var React = __toESM(require("react"));
|
|
35
|
+
const ICONS_COLORS = {
|
|
36
|
+
NEUTRAL: ["neutral", "900"],
|
|
37
|
+
WHITE: ["neutral", "0"],
|
|
38
|
+
DANGER: ["danger", "900"],
|
|
39
|
+
WARNING: ["warning", "600"],
|
|
40
|
+
SUCCESS: ["success", "900"],
|
|
41
|
+
PRIMARY: ["brand-primary", "600"]
|
|
42
|
+
};
|
|
43
|
+
var DSIconColor_default = ICONS_COLORS;
|
|
44
|
+
//# sourceMappingURL=DSIconColor.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/DSIconColor.tsx", "../../../../../scripts/build/transpile/react-shim.js"],
|
|
4
|
+
"sourcesContent": ["const ICONS_COLORS = {\n NEUTRAL: ['neutral', '900'],\n WHITE: ['neutral', '0'],\n DANGER: ['danger', '900'],\n WARNING: ['warning', '600'],\n SUCCESS: ['success', '900'],\n PRIMARY: ['brand-primary', '600'],\n};\n\nexport default ICONS_COLORS;\n", "import * as React from 'react';\nexport { React };\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,MAAM,eAAe;AAAA,EACnB,SAAS,CAAC,WAAW,KAAK;AAAA,EAC1B,OAAO,CAAC,WAAW,GAAG;AAAA,EACtB,QAAQ,CAAC,UAAU,KAAK;AAAA,EACxB,SAAS,CAAC,WAAW,KAAK;AAAA,EAC1B,SAAS,CAAC,WAAW,KAAK;AAAA,EAC1B,SAAS,CAAC,iBAAiB,KAAK;AAClC;AAEA,IAAO,sBAAQ;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
var DSIconSize_exports = {};
|
|
30
|
+
__export(DSIconSize_exports, {
|
|
31
|
+
default: () => DSIconSize_default
|
|
32
|
+
});
|
|
33
|
+
module.exports = __toCommonJS(DSIconSize_exports);
|
|
34
|
+
var React = __toESM(require("react"));
|
|
35
|
+
const ICONS_SIZES = {
|
|
36
|
+
XXS: "xxs",
|
|
37
|
+
XS: "xs",
|
|
38
|
+
S: "s",
|
|
39
|
+
M: "m",
|
|
40
|
+
L: "l",
|
|
41
|
+
XL: "xl",
|
|
42
|
+
XXL: "xxl"
|
|
43
|
+
};
|
|
44
|
+
var DSIconSize_default = ICONS_SIZES;
|
|
45
|
+
//# sourceMappingURL=DSIconSize.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/DSIconSize.tsx", "../../../../../scripts/build/transpile/react-shim.js"],
|
|
4
|
+
"sourcesContent": ["const ICONS_SIZES = {\n XXS: 'xxs',\n XS: 'xs',\n S: 's',\n M: 'm',\n L: 'l',\n XL: 'xl',\n XXL: 'xxl',\n};\n\nexport default ICONS_SIZES;\n", "import * as React from 'react';\nexport { React };\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,MAAM,cAAc;AAAA,EAClB,KAAK;AAAA,EACL,IAAI;AAAA,EACJ,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AAAA,EACH,IAAI;AAAA,EACJ,KAAK;AACP;AAEA,IAAO,qBAAQ;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
var src_exports = {};
|
|
30
|
+
__export(src_exports, {
|
|
31
|
+
DSIconColors: () => import_DSIconColor2.default,
|
|
32
|
+
DSIconSizes: () => import_DSIconSize2.default,
|
|
33
|
+
default: () => src_default
|
|
34
|
+
});
|
|
35
|
+
module.exports = __toCommonJS(src_exports);
|
|
36
|
+
var React = __toESM(require("react"));
|
|
37
|
+
var import_DSIconColor = __toESM(require("./DSIconColor.js"));
|
|
38
|
+
var import_DSIconSize = __toESM(require("./DSIconSize.js"));
|
|
39
|
+
var import_DSIconColor2 = __toESM(require("./DSIconColor.js"));
|
|
40
|
+
var import_DSIconSize2 = __toESM(require("./DSIconSize.js"));
|
|
41
|
+
var src_default = {
|
|
42
|
+
DSIconColors: import_DSIconColor.default,
|
|
43
|
+
DSIconSizes: import_DSIconSize.default
|
|
44
|
+
};
|
|
45
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/index.tsx", "../../../../../scripts/build/transpile/react-shim.js"],
|
|
4
|
+
"sourcesContent": ["import DSIconColors from './DSIconColor.js';\nimport DSIconSizes from './DSIconSize.js';\n\nexport { default as DSIconColors } from './DSIconColor.js';\nexport { default as DSIconSizes } from './DSIconSize.js';\n\nexport default {\n DSIconColors,\n DSIconSizes,\n};\n", "import * as React from 'react';\nexport { React };\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,yBAAyB;AACzB,wBAAwB;AAExB,IAAAA,sBAAwC;AACxC,IAAAC,qBAAuC;AAEvC,IAAO,cAAQ;AAAA,EACb,iCAAAC;AAAA,EACA,+BAAAC;AACF;",
|
|
6
|
+
"names": ["import_DSIconColor", "import_DSIconSize", "DSIconColors", "DSIconSizes"]
|
|
7
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const ICONS_COLORS = {
|
|
3
|
+
NEUTRAL: ["neutral", "900"],
|
|
4
|
+
WHITE: ["neutral", "0"],
|
|
5
|
+
DANGER: ["danger", "900"],
|
|
6
|
+
WARNING: ["warning", "600"],
|
|
7
|
+
SUCCESS: ["success", "900"],
|
|
8
|
+
PRIMARY: ["brand-primary", "600"]
|
|
9
|
+
};
|
|
10
|
+
var DSIconColor_default = ICONS_COLORS;
|
|
11
|
+
export {
|
|
12
|
+
DSIconColor_default as default
|
|
13
|
+
};
|
|
14
|
+
//# sourceMappingURL=DSIconColor.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../src/DSIconColor.tsx"],
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "const ICONS_COLORS = {\n NEUTRAL: ['neutral', '900'],\n WHITE: ['neutral', '0'],\n DANGER: ['danger', '900'],\n WARNING: ['warning', '600'],\n SUCCESS: ['success', '900'],\n PRIMARY: ['brand-primary', '600'],\n};\n\nexport default ICONS_COLORS;\n"],
|
|
5
|
+
"mappings": "AAAA,YAAY,WAAW;ACAvB,MAAM,eAAe;AAAA,EACnB,SAAS,CAAC,WAAW,KAAK;AAAA,EAC1B,OAAO,CAAC,WAAW,GAAG;AAAA,EACtB,QAAQ,CAAC,UAAU,KAAK;AAAA,EACxB,SAAS,CAAC,WAAW,KAAK;AAAA,EAC1B,SAAS,CAAC,WAAW,KAAK;AAAA,EAC1B,SAAS,CAAC,iBAAiB,KAAK;AAClC;AAEA,IAAO,sBAAQ;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const ICONS_SIZES = {
|
|
3
|
+
XXS: "xxs",
|
|
4
|
+
XS: "xs",
|
|
5
|
+
S: "s",
|
|
6
|
+
M: "m",
|
|
7
|
+
L: "l",
|
|
8
|
+
XL: "xl",
|
|
9
|
+
XXL: "xxl"
|
|
10
|
+
};
|
|
11
|
+
var DSIconSize_default = ICONS_SIZES;
|
|
12
|
+
export {
|
|
13
|
+
DSIconSize_default as default
|
|
14
|
+
};
|
|
15
|
+
//# sourceMappingURL=DSIconSize.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../src/DSIconSize.tsx"],
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "const ICONS_SIZES = {\n XXS: 'xxs',\n XS: 'xs',\n S: 's',\n M: 'm',\n L: 'l',\n XL: 'xl',\n XXL: 'xxl',\n};\n\nexport default ICONS_SIZES;\n"],
|
|
5
|
+
"mappings": "AAAA,YAAY,WAAW;ACAvB,MAAM,cAAc;AAAA,EAClB,KAAK;AAAA,EACL,IAAI;AAAA,EACJ,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AAAA,EACH,IAAI;AAAA,EACJ,KAAK;AACP;AAEA,IAAO,qBAAQ;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import DSIconColors from "./DSIconColor.js";
|
|
3
|
+
import DSIconSizes from "./DSIconSize.js";
|
|
4
|
+
import { default as default2 } from "./DSIconColor.js";
|
|
5
|
+
import { default as default3 } from "./DSIconSize.js";
|
|
6
|
+
var src_default = {
|
|
7
|
+
DSIconColors,
|
|
8
|
+
DSIconSizes
|
|
9
|
+
};
|
|
10
|
+
export {
|
|
11
|
+
default2 as DSIconColors,
|
|
12
|
+
default3 as DSIconSizes,
|
|
13
|
+
src_default as default
|
|
14
|
+
};
|
|
15
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../src/index.tsx"],
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import DSIconColors from './DSIconColor.js';\nimport DSIconSizes from './DSIconSize.js';\n\nexport { default as DSIconColors } from './DSIconColor.js';\nexport { default as DSIconSizes } from './DSIconSize.js';\n\nexport default {\n DSIconColors,\n DSIconSizes,\n};\n"],
|
|
5
|
+
"mappings": "AAAA,YAAY,WAAW;ACAvB,OAAO,kBAAkB;AACzB,OAAO,iBAAiB;AAExB,SAAoB,WAAXA,gBAA+B;AACxC,SAAoB,WAAXA,gBAA8B;AAEvC,IAAO,cAAQ;AAAA,EACb;AAAA,EACA;AACF;",
|
|
6
|
+
"names": ["default"]
|
|
7
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export { default as DSIconColors } from './DSIconColor.js';
|
|
2
|
+
export { default as DSIconSizes } from './DSIconSize.js';
|
|
3
|
+
declare const _default: {
|
|
4
|
+
DSIconColors: {
|
|
5
|
+
NEUTRAL: string[];
|
|
6
|
+
WHITE: string[];
|
|
7
|
+
DANGER: string[];
|
|
8
|
+
WARNING: string[];
|
|
9
|
+
SUCCESS: string[];
|
|
10
|
+
PRIMARY: string[];
|
|
11
|
+
};
|
|
12
|
+
DSIconSizes: {
|
|
13
|
+
XXS: string;
|
|
14
|
+
XS: string;
|
|
15
|
+
S: string;
|
|
16
|
+
M: string;
|
|
17
|
+
L: string;
|
|
18
|
+
XL: string;
|
|
19
|
+
XXL: string;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
export default _default;
|
package/package.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@elliemae/ds-legacy-icon",
|
|
3
|
+
"version": "1.0.0-rc.1",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"description": "ICE MT - Dimsum - Icon",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist"
|
|
8
|
+
],
|
|
9
|
+
"module": "./dist/esm/index.js",
|
|
10
|
+
"main": "./dist/cjs/index.js",
|
|
11
|
+
"types": "./dist/types/index.d.ts",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"import": "./dist/esm/index.js",
|
|
15
|
+
"require": "./dist/cjs/index.js"
|
|
16
|
+
},
|
|
17
|
+
"./DSIconSize": {
|
|
18
|
+
"import": "./dist/esm/DSIconSize.js",
|
|
19
|
+
"require": "./dist/cjs/DSIconSize.js"
|
|
20
|
+
},
|
|
21
|
+
"./DSIconColor": {
|
|
22
|
+
"import": "./dist/esm/DSIconColor.js",
|
|
23
|
+
"require": "./dist/cjs/DSIconColor.js"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"sideEffects": [
|
|
27
|
+
"*.css",
|
|
28
|
+
"*.scss"
|
|
29
|
+
],
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "https://git.elliemae.io/platform-ui/dimsum-legacy.git"
|
|
33
|
+
},
|
|
34
|
+
"engines": {
|
|
35
|
+
"pnpm": ">=6",
|
|
36
|
+
"node": ">=16"
|
|
37
|
+
},
|
|
38
|
+
"author": "ICE MT",
|
|
39
|
+
"jestSonar": {
|
|
40
|
+
"sonar56x": true,
|
|
41
|
+
"reportPath": "reports",
|
|
42
|
+
"reportFile": "tests.xml",
|
|
43
|
+
"indent": 4
|
|
44
|
+
},
|
|
45
|
+
"publishConfig": {
|
|
46
|
+
"access": "public",
|
|
47
|
+
"typeSafety": false
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@elliemae/pui-cli": "~9.0.0-next.31",
|
|
51
|
+
"styled-components": "~5.3.9",
|
|
52
|
+
"@elliemae/ds-legacy-monorepo-devops": "1.0.0-rc.1"
|
|
53
|
+
},
|
|
54
|
+
"peerDependencies": {
|
|
55
|
+
"react": "~17.0.2",
|
|
56
|
+
"react-dom": "^17.0.2"
|
|
57
|
+
},
|
|
58
|
+
"scripts": {
|
|
59
|
+
"dev": "cross-env NODE_ENV=development node ../../../scripts/build/build.mjs --watch",
|
|
60
|
+
"test": "pui-cli test --passWithNoTests",
|
|
61
|
+
"lint": "node ../../../scripts/lint.mjs",
|
|
62
|
+
"eslint:fix": "eslint --ext='.js,.jsx,.test.js,.ts,.tsx' --fix --config='../../../.eslintrc.js' src/",
|
|
63
|
+
"dts": "node ../../../scripts/dts.mjs",
|
|
64
|
+
"build": "cross-env NODE_ENV=production node ../../../scripts/build/build.mjs",
|
|
65
|
+
"dev:build": "pnpm --filter {.}... build",
|
|
66
|
+
"dev:install": "pnpm --filter {.}... i --no-lockfile && pnpm run dev:build",
|
|
67
|
+
"checkDeps": "npm exec ../../util/ds-codemods -- check-missing-packages --projectFolderPath=\"./\" --ignorePackagesGlobPattern=\"\" --ignoreFilesGlobPattern=\"**/test-ables/*,**/tests/*\""
|
|
68
|
+
}
|
|
69
|
+
}
|