@rxap/plugin-storybook 20.0.2-dev.2 → 20.0.2-dev.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/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [20.0.2-dev.3](https://gitlab.com/rxap/packages/compare/@rxap/plugin-storybook@20.0.2-dev.2...@rxap/plugin-storybook@20.0.2-dev.3) (2025-02-19)
7
+
8
+ ### Bug Fixes
9
+
10
+ - use tuples instead of enums ([8e39ee0](https://gitlab.com/rxap/packages/commit/8e39ee0145ed7650f783913857780d276b26069c))
11
+
6
12
  ## [20.0.2-dev.2](https://gitlab.com/rxap/packages/compare/@rxap/plugin-storybook@20.0.2-dev.1...@rxap/plugin-storybook@20.0.2-dev.2) (2025-02-18)
7
13
 
8
14
  **Note:** Version bump only for package @rxap/plugin-storybook
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "20.0.2-dev.2",
2
+ "version": "20.0.2-dev.3",
3
3
  "name": "@rxap/plugin-storybook",
4
4
  "description": "This package provides generators to initialize Storybook for Angular projects within an Nx workspace. It automates the configuration of Storybook, including adding dependencies, setting up configurations, and generating stories. It supports both application and library projects, and offers options to customize the setup, such as enabling Compodoc integration and skipping format checks.\n",
5
5
  "license": "MIT",
@@ -44,7 +44,7 @@
44
44
  },
45
45
  "schematics": "./generators.json",
46
46
  "type": "commonjs",
47
- "gitHead": "56dd8f41988cee44681204be2f9ad1cb7725cb7f",
47
+ "gitHead": "8058138ff98d9e37b711846892c79ebc45ed17d4",
48
48
  "types": "./src/index.d.ts",
49
49
  "main": "./src/index.js"
50
50
  }
@@ -1,8 +1,3 @@
1
- export enum InitApplicationLinterGeneratorSchemaEnum {
2
- ESLINT = 'eslint',
3
- NONE = 'none'
4
- }
5
-
6
1
  export interface InitApplicationGeneratorSchema {
7
2
  project?: string;
8
3
  projects?: Array<string>;
@@ -23,7 +18,7 @@ export interface InitApplicationGeneratorSchema {
23
18
  /** A directory where the Cypress project will be placed. Placed at the root by default. */
24
19
  cypressDirectory?: string;
25
20
  /** The tool to use for running lint checks. */
26
- linter?: InitApplicationLinterGeneratorSchemaEnum;
21
+ linter?: 'eslint' | 'none';
27
22
  /** Configure your project with TypeScript. Generate main.ts and preview.ts files, instead of main.js and preview.js. */
28
23
  tsConfiguration?: boolean;
29
24
  /** Skip formatting files. */
@@ -1,8 +1,3 @@
1
- export enum InitLibraryLinterGeneratorSchemaEnum {
2
- ESLINT = 'eslint',
3
- NONE = 'none'
4
- }
5
-
6
1
  export interface InitLibraryGeneratorSchema {
7
2
  project?: string;
8
3
  projects?: Array<string>;
@@ -23,7 +18,7 @@ export interface InitLibraryGeneratorSchema {
23
18
  /** A directory where the Cypress project will be placed. Placed at the root by default. */
24
19
  cypressDirectory?: string;
25
20
  /** The tool to use for running lint checks. */
26
- linter?: InitLibraryLinterGeneratorSchemaEnum;
21
+ linter?: 'eslint' | 'none';
27
22
  /** Configure your project with TypeScript. Generate main.ts and preview.ts files, instead of main.js and preview.js. */
28
23
  tsConfiguration?: boolean;
29
24
  /** Skip formatting files. */