sb 8.1.0-alpha.3 → 8.1.0-alpha.4

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sb",
3
- "version": "8.1.0-alpha.3",
3
+ "version": "8.1.0-alpha.4",
4
4
  "description": "Storybook CLI",
5
5
  "keywords": [
6
6
  "storybook"
@@ -21,7 +21,7 @@
21
21
  "license": "MIT",
22
22
  "bin": "./index.js",
23
23
  "dependencies": {
24
- "@storybook/cli": "8.1.0-alpha.3"
24
+ "@storybook/cli": "8.1.0-alpha.4"
25
25
  },
26
26
  "publishConfig": {
27
27
  "access": "public"
package/project.json CHANGED
@@ -1,6 +1,5 @@
1
1
  {
2
- "name": "sb",
3
2
  "$schema": "../../node_modules/nx/schemas/project-schema.json",
4
- "implicitDependencies": [],
5
- "type": "library"
3
+ "projectType": "library",
4
+ "targets": {}
6
5
  }
package/vitest.config.ts CHANGED
@@ -1,5 +1,4 @@
1
1
  import { defineConfig, mergeConfig } from 'vitest/config';
2
- import { sep, posix } from 'path';
3
2
  import { vitestCommonConfig } from '../../vitest.workspace';
4
3
 
5
4
  export default mergeConfig(
@@ -7,7 +6,6 @@ export default mergeConfig(
7
6
  defineConfig({
8
7
  test: {
9
8
  environment: 'node',
10
- name: __dirname.split(sep).slice(-2).join(posix.sep),
11
9
  },
12
10
  })
13
11
  );