@elliemae/ds-form-layout-input-group 3.16.0-next.1 → 3.16.0-next.3
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/InputGroup.js +5 -5
- package/dist/cjs/InputGroup.js.map +2 -2
- package/dist/cjs/react-desc-prop-types.js +4 -4
- package/dist/cjs/react-desc-prop-types.js.map +2 -2
- package/dist/esm/InputGroup.js +1 -1
- package/dist/esm/InputGroup.js.map +1 -1
- package/dist/esm/react-desc-prop-types.js +1 -1
- package/dist/esm/react-desc-prop-types.js.map +1 -1
- package/dist/types/InputGroup.d.ts +1 -1
- package/dist/types/react-desc-prop-types.d.ts +3 -3
- package/package.json +9 -8
package/dist/cjs/InputGroup.js
CHANGED
|
@@ -31,15 +31,15 @@ module.exports = __toCommonJS(InputGroup_exports);
|
|
|
31
31
|
var React = __toESM(require("react"));
|
|
32
32
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
33
33
|
var import_react = require("react");
|
|
34
|
-
var
|
|
34
|
+
var import_ds_props_helpers = require("@elliemae/ds-props-helpers");
|
|
35
35
|
var import_styled = require("./styled");
|
|
36
36
|
var import_react_desc_prop_types = require("./react-desc-prop-types");
|
|
37
37
|
var import_exported_related = require("./exported-related");
|
|
38
38
|
const DSInputGroup = (props) => {
|
|
39
|
-
(0,
|
|
39
|
+
(0, import_ds_props_helpers.useValidateTypescriptPropTypes)(props, import_react_desc_prop_types.propTypes, import_exported_related.DSInputGroupName);
|
|
40
40
|
const { children, leftAddon, rightAddon } = props;
|
|
41
|
-
const { rows, wrap, width, height, ...globals } = (0,
|
|
42
|
-
const xstyledProps = (0,
|
|
41
|
+
const { rows, wrap, width, height, ...globals } = (0, import_ds_props_helpers.useGetGlobalAttributes)(props);
|
|
42
|
+
const xstyledProps = (0, import_ds_props_helpers.useGetXstyledProps)(props);
|
|
43
43
|
const cols = (0, import_react.useMemo)(() => {
|
|
44
44
|
if (leftAddon && rightAddon) {
|
|
45
45
|
return ["max-content", "auto", "max-content"];
|
|
@@ -60,6 +60,6 @@ const DSInputGroup = (props) => {
|
|
|
60
60
|
};
|
|
61
61
|
DSInputGroup.propTypes = import_react_desc_prop_types.propTypes;
|
|
62
62
|
DSInputGroup.displayName = import_exported_related.DSInputGroupName;
|
|
63
|
-
const DSInputGroupWithSchema = (0,
|
|
63
|
+
const DSInputGroupWithSchema = (0, import_ds_props_helpers.describe)(DSInputGroup);
|
|
64
64
|
DSInputGroupWithSchema.propTypes = import_react_desc_prop_types.propTypes;
|
|
65
65
|
//# sourceMappingURL=InputGroup.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/InputGroup.tsx", "../../../../scripts/build/transpile/react-shim.js"],
|
|
4
|
-
"sourcesContent": ["import type { WeakValidationMap } from 'react';\nimport React, { useMemo } from 'react';\nimport {\n describe,\n useValidateTypescriptPropTypes,\n useGetGlobalAttributes,\n useGetXstyledProps,\n} from '@elliemae/ds-
|
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADgCnB;AA/BJ,mBAA+B;AAC/B,
|
|
4
|
+
"sourcesContent": ["import type { WeakValidationMap } from 'react';\nimport React, { useMemo } from 'react';\nimport {\n describe,\n useValidateTypescriptPropTypes,\n useGetGlobalAttributes,\n useGetXstyledProps,\n} from '@elliemae/ds-props-helpers';\nimport { StyledContainer, StyledLeftAddon, StyledRightAddon, StyledInput } from './styled';\nimport type { DSInputGroupT } from './react-desc-prop-types';\nimport { propTypes } from './react-desc-prop-types';\nimport { DSInputGroupName, InputGroupDataTestIds } from './exported-related';\n\nconst DSInputGroup: React.ComponentType<DSInputGroupT.Props> = (props) => {\n useValidateTypescriptPropTypes(props, propTypes, DSInputGroupName);\n const { children, leftAddon, rightAddon } = props;\n // eslint-disable-next-line no-unused-vars\n const { rows, wrap, width, height, ...globals } = useGetGlobalAttributes(props);\n const xstyledProps = useGetXstyledProps(props);\n const cols = useMemo(() => {\n if (leftAddon && rightAddon) {\n return ['max-content', 'auto', 'max-content'];\n }\n if (leftAddon && !rightAddon) {\n return ['max-content', 'auto'];\n }\n if (!leftAddon && rightAddon) {\n return ['auto', 'max-content'];\n }\n return ['auto'];\n }, [leftAddon, rightAddon]);\n return (\n <StyledContainer data-testid={InputGroupDataTestIds.CONTAINER} {...globals} {...xstyledProps} cols={cols}>\n {leftAddon && <StyledLeftAddon data-testid={InputGroupDataTestIds.LEFTADDON}>{leftAddon}</StyledLeftAddon>}\n <StyledInput data-testid={InputGroupDataTestIds.INPUTCONTAINER}>{children}</StyledInput>\n {rightAddon && <StyledRightAddon data-testid={InputGroupDataTestIds.RIGHTADDON}>{rightAddon}</StyledRightAddon>}\n </StyledContainer>\n );\n};\n\nDSInputGroup.propTypes = propTypes as WeakValidationMap<unknown>;\nDSInputGroup.displayName = DSInputGroupName;\nconst DSInputGroupWithSchema = describe(DSInputGroup);\nDSInputGroupWithSchema.propTypes = propTypes as WeakValidationMap<unknown>;\n\nexport { DSInputGroup, DSInputGroupWithSchema };\n", "import * as React from 'react';\nexport { React };\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADgCnB;AA/BJ,mBAA+B;AAC/B,8BAKO;AACP,oBAAgF;AAEhF,mCAA0B;AAC1B,8BAAwD;AAExD,MAAM,eAAyD,CAAC,UAAU;AACxE,8DAA+B,OAAO,wCAAW,wCAAgB;AACjE,QAAM,EAAE,UAAU,WAAW,WAAW,IAAI;AAE5C,QAAM,EAAE,MAAM,MAAM,OAAO,WAAW,QAAQ,QAAI,gDAAuB,KAAK;AAC9E,QAAM,mBAAe,4CAAmB,KAAK;AAC7C,QAAM,WAAO,sBAAQ,MAAM;AACzB,QAAI,aAAa,YAAY;AAC3B,aAAO,CAAC,eAAe,QAAQ,aAAa;AAAA,IAC9C;AACA,QAAI,aAAa,CAAC,YAAY;AAC5B,aAAO,CAAC,eAAe,MAAM;AAAA,IAC/B;AACA,QAAI,CAAC,aAAa,YAAY;AAC5B,aAAO,CAAC,QAAQ,aAAa;AAAA,IAC/B;AACA,WAAO,CAAC,MAAM;AAAA,EAChB,GAAG,CAAC,WAAW,UAAU,CAAC;AAC1B,SACE,6CAAC,iCAAgB,eAAa,8CAAsB,WAAY,GAAG,SAAU,GAAG,cAAc,MAC3F;AAAA,iBAAa,4CAAC,iCAAgB,eAAa,8CAAsB,WAAY,qBAAU;AAAA,IACxF,4CAAC,6BAAY,eAAa,8CAAsB,gBAAiB,UAAS;AAAA,IACzE,cAAc,4CAAC,kCAAiB,eAAa,8CAAsB,YAAa,sBAAW;AAAA,KAC9F;AAEJ;AAEA,aAAa,YAAY;AACzB,aAAa,cAAc;AAC3B,MAAM,6BAAyB,kCAAS,YAAY;AACpD,uBAAuB,YAAY;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -28,10 +28,10 @@ __export(react_desc_prop_types_exports, {
|
|
|
28
28
|
});
|
|
29
29
|
module.exports = __toCommonJS(react_desc_prop_types_exports);
|
|
30
30
|
var React = __toESM(require("react"));
|
|
31
|
-
var
|
|
31
|
+
var import_ds_props_helpers = require("@elliemae/ds-props-helpers");
|
|
32
32
|
const propTypes = {
|
|
33
|
-
leftAddon:
|
|
34
|
-
rightAddon:
|
|
35
|
-
children:
|
|
33
|
+
leftAddon: import_ds_props_helpers.PropTypes.element.description("Component to be added at the left side of the input"),
|
|
34
|
+
rightAddon: import_ds_props_helpers.PropTypes.element.description("Component to be added at the right side of the input"),
|
|
35
|
+
children: import_ds_props_helpers.PropTypes.node.isRequired.description("React component to apply autocomplete functionality").defaultValue("")
|
|
36
36
|
};
|
|
37
37
|
//# sourceMappingURL=react-desc-prop-types.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/react-desc-prop-types.ts", "../../../../scripts/build/transpile/react-shim.js"],
|
|
4
|
-
"sourcesContent": ["/* eslint-disable @typescript-eslint/no-unused-vars */\n/* eslint-disable no-unused-vars */\nimport type React from 'react';\nimport { PropTypes } from '@elliemae/ds-
|
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADGvB,
|
|
4
|
+
"sourcesContent": ["/* eslint-disable @typescript-eslint/no-unused-vars */\n/* eslint-disable no-unused-vars */\nimport type React from 'react';\nimport { PropTypes } from '@elliemae/ds-props-helpers';\n\nexport declare namespace DSInputGroupT {\n export interface RequiredProps {\n children: React.ReactChild;\n }\n export interface OptionalProps {\n leftAddon?: React.ReactNode;\n rightAddon?: React.ReactNode;\n }\n\n export interface Props extends Partial<OptionalProps>, RequiredProps {}\n\n export interface InternalProps extends OptionalProps, RequiredProps {}\n}\n\nexport const propTypes = {\n leftAddon: PropTypes.element.description('Component to be added at the left side of the input'),\n rightAddon: PropTypes.element.description('Component to be added at the right side of the input'),\n children: PropTypes.node.isRequired\n .description('React component to apply autocomplete functionality')\n .defaultValue(''),\n};\n", "import * as React from 'react';\nexport { React };\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADGvB,8BAA0B;AAgBnB,MAAM,YAAY;AAAA,EACvB,WAAW,kCAAU,QAAQ,YAAY,qDAAqD;AAAA,EAC9F,YAAY,kCAAU,QAAQ,YAAY,sDAAsD;AAAA,EAChG,UAAU,kCAAU,KAAK,WACtB,YAAY,qDAAqD,EACjE,aAAa,EAAE;AACpB;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/dist/esm/InputGroup.js
CHANGED
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
useValidateTypescriptPropTypes,
|
|
7
7
|
useGetGlobalAttributes,
|
|
8
8
|
useGetXstyledProps
|
|
9
|
-
} from "@elliemae/ds-
|
|
9
|
+
} from "@elliemae/ds-props-helpers";
|
|
10
10
|
import { StyledContainer, StyledLeftAddon, StyledRightAddon, StyledInput } from "./styled";
|
|
11
11
|
import { propTypes } from "./react-desc-prop-types";
|
|
12
12
|
import { DSInputGroupName, InputGroupDataTestIds } from "./exported-related";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../scripts/build/transpile/react-shim.js", "../../src/InputGroup.tsx"],
|
|
4
|
-
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import type { WeakValidationMap } from 'react';\nimport React, { useMemo } from 'react';\nimport {\n describe,\n useValidateTypescriptPropTypes,\n useGetGlobalAttributes,\n useGetXstyledProps,\n} from '@elliemae/ds-
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import type { WeakValidationMap } from 'react';\nimport React, { useMemo } from 'react';\nimport {\n describe,\n useValidateTypescriptPropTypes,\n useGetGlobalAttributes,\n useGetXstyledProps,\n} from '@elliemae/ds-props-helpers';\nimport { StyledContainer, StyledLeftAddon, StyledRightAddon, StyledInput } from './styled';\nimport type { DSInputGroupT } from './react-desc-prop-types';\nimport { propTypes } from './react-desc-prop-types';\nimport { DSInputGroupName, InputGroupDataTestIds } from './exported-related';\n\nconst DSInputGroup: React.ComponentType<DSInputGroupT.Props> = (props) => {\n useValidateTypescriptPropTypes(props, propTypes, DSInputGroupName);\n const { children, leftAddon, rightAddon } = props;\n // eslint-disable-next-line no-unused-vars\n const { rows, wrap, width, height, ...globals } = useGetGlobalAttributes(props);\n const xstyledProps = useGetXstyledProps(props);\n const cols = useMemo(() => {\n if (leftAddon && rightAddon) {\n return ['max-content', 'auto', 'max-content'];\n }\n if (leftAddon && !rightAddon) {\n return ['max-content', 'auto'];\n }\n if (!leftAddon && rightAddon) {\n return ['auto', 'max-content'];\n }\n return ['auto'];\n }, [leftAddon, rightAddon]);\n return (\n <StyledContainer data-testid={InputGroupDataTestIds.CONTAINER} {...globals} {...xstyledProps} cols={cols}>\n {leftAddon && <StyledLeftAddon data-testid={InputGroupDataTestIds.LEFTADDON}>{leftAddon}</StyledLeftAddon>}\n <StyledInput data-testid={InputGroupDataTestIds.INPUTCONTAINER}>{children}</StyledInput>\n {rightAddon && <StyledRightAddon data-testid={InputGroupDataTestIds.RIGHTADDON}>{rightAddon}</StyledRightAddon>}\n </StyledContainer>\n );\n};\n\nDSInputGroup.propTypes = propTypes as WeakValidationMap<unknown>;\nDSInputGroup.displayName = DSInputGroupName;\nconst DSInputGroupWithSchema = describe(DSInputGroup);\nDSInputGroupWithSchema.propTypes = propTypes as WeakValidationMap<unknown>;\n\nexport { DSInputGroup, DSInputGroupWithSchema };\n"],
|
|
5
5
|
"mappings": "AAAA,YAAY,WAAW;ACgCnB,SACgB,KADhB;AA/BJ,SAAgB,eAAe;AAC/B;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;AACP,SAAS,iBAAiB,iBAAiB,kBAAkB,mBAAmB;AAEhF,SAAS,iBAAiB;AAC1B,SAAS,kBAAkB,6BAA6B;AAExD,MAAM,eAAyD,CAAC,UAAU;AACxE,iCAA+B,OAAO,WAAW,gBAAgB;AACjE,QAAM,EAAE,UAAU,WAAW,WAAW,IAAI;AAE5C,QAAM,EAAE,MAAM,MAAM,OAAO,WAAW,QAAQ,IAAI,uBAAuB,KAAK;AAC9E,QAAM,eAAe,mBAAmB,KAAK;AAC7C,QAAM,OAAO,QAAQ,MAAM;AACzB,QAAI,aAAa,YAAY;AAC3B,aAAO,CAAC,eAAe,QAAQ,aAAa;AAAA,IAC9C;AACA,QAAI,aAAa,CAAC,YAAY;AAC5B,aAAO,CAAC,eAAe,MAAM;AAAA,IAC/B;AACA,QAAI,CAAC,aAAa,YAAY;AAC5B,aAAO,CAAC,QAAQ,aAAa;AAAA,IAC/B;AACA,WAAO,CAAC,MAAM;AAAA,EAChB,GAAG,CAAC,WAAW,UAAU,CAAC;AAC1B,SACE,qBAAC,mBAAgB,eAAa,sBAAsB,WAAY,GAAG,SAAU,GAAG,cAAc,MAC3F;AAAA,iBAAa,oBAAC,mBAAgB,eAAa,sBAAsB,WAAY,qBAAU;AAAA,IACxF,oBAAC,eAAY,eAAa,sBAAsB,gBAAiB,UAAS;AAAA,IACzE,cAAc,oBAAC,oBAAiB,eAAa,sBAAsB,YAAa,sBAAW;AAAA,KAC9F;AAEJ;AAEA,aAAa,YAAY;AACzB,aAAa,cAAc;AAC3B,MAAM,yBAAyB,SAAS,YAAY;AACpD,uBAAuB,YAAY;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import { PropTypes } from "@elliemae/ds-
|
|
2
|
+
import { PropTypes } from "@elliemae/ds-props-helpers";
|
|
3
3
|
const propTypes = {
|
|
4
4
|
leftAddon: PropTypes.element.description("Component to be added at the left side of the input"),
|
|
5
5
|
rightAddon: PropTypes.element.description("Component to be added at the right side of the input"),
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../scripts/build/transpile/react-shim.js", "../../src/react-desc-prop-types.ts"],
|
|
4
|
-
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "/* eslint-disable @typescript-eslint/no-unused-vars */\n/* eslint-disable no-unused-vars */\nimport type React from 'react';\nimport { PropTypes } from '@elliemae/ds-
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "/* eslint-disable @typescript-eslint/no-unused-vars */\n/* eslint-disable no-unused-vars */\nimport type React from 'react';\nimport { PropTypes } from '@elliemae/ds-props-helpers';\n\nexport declare namespace DSInputGroupT {\n export interface RequiredProps {\n children: React.ReactChild;\n }\n export interface OptionalProps {\n leftAddon?: React.ReactNode;\n rightAddon?: React.ReactNode;\n }\n\n export interface Props extends Partial<OptionalProps>, RequiredProps {}\n\n export interface InternalProps extends OptionalProps, RequiredProps {}\n}\n\nexport const propTypes = {\n leftAddon: PropTypes.element.description('Component to be added at the left side of the input'),\n rightAddon: PropTypes.element.description('Component to be added at the right side of the input'),\n children: PropTypes.node.isRequired\n .description('React component to apply autocomplete functionality')\n .defaultValue(''),\n};\n"],
|
|
5
5
|
"mappings": "AAAA,YAAY,WAAW;ACGvB,SAAS,iBAAiB;AAgBnB,MAAM,YAAY;AAAA,EACvB,WAAW,UAAU,QAAQ,YAAY,qDAAqD;AAAA,EAC9F,YAAY,UAAU,QAAQ,YAAY,sDAAsD;AAAA,EAChG,UAAU,UAAU,KAAK,WACtB,YAAY,qDAAqD,EACjE,aAAa,EAAE;AACpB;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { DSInputGroupT } from './react-desc-prop-types';
|
|
3
3
|
declare const DSInputGroup: React.ComponentType<DSInputGroupT.Props>;
|
|
4
|
-
declare const DSInputGroupWithSchema: import("@elliemae/ds-
|
|
4
|
+
declare const DSInputGroupWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").DocumentedReactComponent<DSInputGroupT.Props>;
|
|
5
5
|
export { DSInputGroup, DSInputGroupWithSchema };
|
|
@@ -13,7 +13,7 @@ export declare namespace DSInputGroupT {
|
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
export declare const propTypes: {
|
|
16
|
-
leftAddon: import("@elliemae/ds-
|
|
17
|
-
rightAddon: import("@elliemae/ds-
|
|
18
|
-
children: import("@elliemae/ds-
|
|
16
|
+
leftAddon: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
17
|
+
rightAddon: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
18
|
+
children: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
19
19
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-form-layout-input-group",
|
|
3
|
-
"version": "3.16.0-next.
|
|
3
|
+
"version": "3.16.0-next.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Form Layout - Input Group",
|
|
6
6
|
"files": [
|
|
@@ -36,11 +36,12 @@
|
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"styled-components": "~5.3.6",
|
|
39
|
-
"@elliemae/ds-
|
|
40
|
-
"@elliemae/ds-form-
|
|
41
|
-
"@elliemae/ds-
|
|
42
|
-
"@elliemae/ds-
|
|
43
|
-
"@elliemae/ds-system": "3.16.0-next.
|
|
39
|
+
"@elliemae/ds-form-combobox": "3.16.0-next.3",
|
|
40
|
+
"@elliemae/ds-form-input-text": "3.16.0-next.3",
|
|
41
|
+
"@elliemae/ds-grid": "3.16.0-next.3",
|
|
42
|
+
"@elliemae/ds-props-helpers": "3.16.0-next.3",
|
|
43
|
+
"@elliemae/ds-system": "3.16.0-next.3",
|
|
44
|
+
"@elliemae/ds-utilities": "3.16.0-next.3"
|
|
44
45
|
},
|
|
45
46
|
"devDependencies": {
|
|
46
47
|
"@elliemae/pui-theme": "~2.6.0",
|
|
@@ -50,7 +51,7 @@
|
|
|
50
51
|
"@testing-library/user-event": "~13.5.0",
|
|
51
52
|
"styled-components": "~5.3.6",
|
|
52
53
|
"styled-system": "~5.1.5",
|
|
53
|
-
"@elliemae/ds-button": "3.16.0-next.
|
|
54
|
+
"@elliemae/ds-button": "3.16.0-next.3"
|
|
54
55
|
},
|
|
55
56
|
"peerDependencies": {
|
|
56
57
|
"@elliemae/pui-theme": "~2.6.0",
|
|
@@ -70,7 +71,7 @@
|
|
|
70
71
|
"eslint:fix": "eslint --ext='.js,.jsx,.test.js,.ts,.tsx' --fix --config='../../.eslintrc.js' src/",
|
|
71
72
|
"dts": "node ../../scripts/dts.mjs",
|
|
72
73
|
"build": "cross-env NODE_ENV=production node ../../scripts/build/build.mjs",
|
|
73
|
-
"dev:build": "pnpm --filter {.}... build
|
|
74
|
+
"dev:build": "pnpm --filter {.}... build",
|
|
74
75
|
"dev:install": "pnpm --filter {.}... i --no-lockfile && pnpm run dev:build",
|
|
75
76
|
"checkDeps": "npx -yes ../ds-codemods check-missing-packages --projectFolderPath=\"./\" --ignorePackagesGlobPattern=\"\" --ignoreFilesGlobPattern=\"**/test-ables/*,**/tests/*\""
|
|
76
77
|
}
|