@nx/storybook 23.2.0-beta.5 → 23.2.0-beta.7

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.
@@ -128,7 +128,6 @@ function normalizeSchema(tree, schema) {
128
128
  nxJson.useInferencePlugins !== false;
129
129
  const defaults = {
130
130
  interactionTests: true,
131
- linter: 'eslint',
132
131
  js: false,
133
132
  tsConfiguration: true,
134
133
  addPlugin,
@@ -345,7 +345,6 @@ function updateLintConfig(tree, schema) {
345
345
  function normalizeSchema(schema) {
346
346
  const defaults = {
347
347
  configureCypress: true,
348
- linter: 'eslint',
349
348
  js: false,
350
349
  };
351
350
  return {
@@ -1,10 +1,10 @@
1
- import { Linter, LinterType } from '@nx/eslint';
1
+ import { LinterType } from '@nx/js';
2
2
  import { UiFramework } from '../../utils/models';
3
3
 
4
4
  export interface StorybookConfigureSchema {
5
5
  project: string;
6
6
  uiFramework?: UiFramework;
7
- linter?: Linter | LinterType;
7
+ linter?: LinterType;
8
8
  js?: boolean;
9
9
  interactionTests?: boolean;
10
10
  tsConfiguration?: boolean;
@@ -28,8 +28,7 @@
28
28
  "linter": {
29
29
  "description": "The tool to use for running lint checks.",
30
30
  "type": "string",
31
- "enum": ["eslint", "none"],
32
- "default": "eslint"
31
+ "enum": ["eslint", "oxlint", "none"]
33
32
  },
34
33
  "js": {
35
34
  "type": "boolean",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/storybook",
3
- "version": "23.2.0-beta.5",
3
+ "version": "23.2.0-beta.7",
4
4
  "private": false,
5
5
  "type": "commonjs",
6
6
  "files": [
@@ -92,18 +92,18 @@
92
92
  "@phenomnomnominal/tsquery": "~6.2.0",
93
93
  "semver": "^7.6.3",
94
94
  "tslib": "^2.3.0",
95
- "@nx/devkit": "23.2.0-beta.5",
96
- "@nx/cypress": "23.2.0-beta.5",
97
- "@nx/js": "23.2.0-beta.5",
98
- "@nx/eslint": "23.2.0-beta.5"
95
+ "@nx/devkit": "23.2.0-beta.7",
96
+ "@nx/cypress": "23.2.0-beta.7",
97
+ "@nx/js": "23.2.0-beta.7",
98
+ "@nx/eslint": "23.2.0-beta.7"
99
99
  },
100
100
  "devDependencies": {
101
101
  "storybook": "9.0.6",
102
- "nx": "23.2.0-beta.5"
102
+ "nx": "23.2.0-beta.7"
103
103
  },
104
104
  "peerDependencies": {
105
105
  "storybook": ">=8.0.0 <11.0.0",
106
- "@nx/web": "23.2.0-beta.5"
106
+ "@nx/web": "23.2.0-beta.7"
107
107
  },
108
108
  "peerDependenciesMeta": {
109
109
  "@nx/web": {