@elliemae/pui-cli 9.0.0-next.4 → 9.0.0-next.5

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.
@@ -36,12 +36,12 @@ var import_utils = require("./utils.js");
36
36
  const buildStoryBook = async (outputDir = "demo", isDoc = false) => {
37
37
  const additionalParams = isDoc ? `--docs -o ${outputDir}/docs` : `-o ${outputDir}`;
38
38
  await (0, import_utils.exec)(
39
- `cross-env NODE_ENV=production build-storybook --quiet ${additionalParams}`
39
+ `cross-env NODE_ENV=production storybook build --quiet ${additionalParams}`
40
40
  );
41
41
  };
42
42
  const startStoryBook = async (isDoc = false) => {
43
43
  await (0, import_utils.exec)(
44
- `cross-env NODE_ENV=development STORYBOOK_BUILD=true start-storybook ${isDoc ? "--docs" : ""} -p 11000 --quiet`
44
+ `cross-env STORYBOOK_BUILD=true storybook dev ${isDoc ? "--docs" : ""} -p 11000 --quiet`
45
45
  );
46
46
  };
47
47
  const cmdArgs = {
@@ -3,12 +3,12 @@ import { exec, logInfo, logError, logSuccess } from "./utils.js";
3
3
  const buildStoryBook = async (outputDir = "demo", isDoc = false) => {
4
4
  const additionalParams = isDoc ? `--docs -o ${outputDir}/docs` : `-o ${outputDir}`;
5
5
  await exec(
6
- `cross-env NODE_ENV=production build-storybook --quiet ${additionalParams}`
6
+ `cross-env NODE_ENV=production storybook build --quiet ${additionalParams}`
7
7
  );
8
8
  };
9
9
  const startStoryBook = async (isDoc = false) => {
10
10
  await exec(
11
- `cross-env NODE_ENV=development STORYBOOK_BUILD=true start-storybook ${isDoc ? "--docs" : ""} -p 11000 --quiet`
11
+ `cross-env STORYBOOK_BUILD=true storybook dev ${isDoc ? "--docs" : ""} -p 11000 --quiet`
12
12
  );
13
13
  };
14
14
  const cmdArgs = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/pui-cli",
3
- "version": "9.0.0-next.4",
3
+ "version": "9.0.0-next.5",
4
4
  "description": "ICE MT UI Platform CLI",
5
5
  "sideEffects": false,
6
6
  "type": "module",
@@ -115,6 +115,7 @@
115
115
  "@storybook/builder-webpack5": "~7.0.9",
116
116
  "@storybook/manager-webpack5": "~6.5.16",
117
117
  "@storybook/react": "~7.0.9",
118
+ "@storybook/react-vite": "~7.0.9",
118
119
  "@storybook/react-webpack5": "~7.0.9",
119
120
  "@storybook/theming": "~7.0.9",
120
121
  "@stylelint/postcss-css-in-js": "~0.38.0",
@@ -181,7 +182,7 @@
181
182
  "esbuild-loader": "~3.0.1",
182
183
  "esbuild-plugin-lodash": "~1.2.0",
183
184
  "esbuild-plugin-svgr": "~1.1.0",
184
- "eslint": "~8.39.0",
185
+ "eslint": "~8.40.0",
185
186
  "eslint-config-airbnb": "~19.0.4",
186
187
  "eslint-config-airbnb-base": "~15.0.0",
187
188
  "eslint-config-airbnb-typescript": "~17.0.0",