@storybook/codemod 8.0.0-alpha.4 → 8.0.0-alpha.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/package.json +4 -6
  2. package/jest.config.js +0 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/codemod",
3
- "version": "8.0.0-alpha.4",
3
+ "version": "8.0.0-alpha.6",
4
4
  "description": "A collection of codemod scripts written with JSCodeshift",
5
5
  "keywords": [
6
6
  "storybook"
@@ -56,9 +56,9 @@
56
56
  "@babel/preset-env": "^7.23.2",
57
57
  "@babel/types": "^7.23.0",
58
58
  "@storybook/csf": "^0.1.2",
59
- "@storybook/csf-tools": "8.0.0-alpha.4",
60
- "@storybook/node-logger": "8.0.0-alpha.4",
61
- "@storybook/types": "8.0.0-alpha.4",
59
+ "@storybook/csf-tools": "8.0.0-alpha.6",
60
+ "@storybook/node-logger": "8.0.0-alpha.6",
61
+ "@storybook/types": "8.0.0-alpha.6",
62
62
  "@types/cross-spawn": "^6.0.2",
63
63
  "cross-spawn": "^7.0.3",
64
64
  "globby": "^11.0.2",
@@ -71,8 +71,6 @@
71
71
  "devDependencies": {
72
72
  "@types/jscodeshift": "^0.11.10",
73
73
  "ansi-regex": "^5.0.1",
74
- "jest": "^29.7.0",
75
- "jest-specific-snapshot": "^8.0.0",
76
74
  "mdast-util-mdx-jsx": "^2.1.2",
77
75
  "mdast-util-mdxjs-esm": "^1.3.1",
78
76
  "remark": "^14.0.2",
package/jest.config.js DELETED
@@ -1,9 +0,0 @@
1
- const path = require('path');
2
- const baseConfig = require('../../jest.config.node');
3
-
4
- /** @type {import('jest').Config} */
5
- module.exports = {
6
- ...baseConfig,
7
- displayName: __dirname.split(path.sep).slice(-2).join(path.posix.sep),
8
- resetMocks: true,
9
- };