Skip to content

Commit 01de0dc

Browse files
committedFeb 6, 2020
removing unnecessary dependencies
1 parent 5ef8d51 commit 01de0dc

File tree

7 files changed

+68
-1054
lines changed

7 files changed

+68
-1054
lines changed
 

‎.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ root = true
33
[*]
44
end_of_line = lf
55

6-
[*.{js,json,ts,vue,svelte,html}]
6+
[*.{js,json,ts,vue,html}]
77
indent_style = space
88
indent_size = 2

‎.github/autolabeler.yml

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
'app: react-native': ["app/react-native/**"]
2020
'app: react': ["app/react/**"]
2121
'app: vue': ["app/vue/**"]
22-
'app: svelte': ["app/svelte/**"]
2322
'app: mithril': ["app/mithril/**"]
2423
'babel / webpack': ["webpack", "babel"]
2524
'cli': ["lib/cli/**"]

‎.gitignore

-2
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,3 @@ htpasswd
3333
storybook-out
3434
/addons/docs/common/config-*
3535
built-storybooks
36-
cypress/videos
37-
cypress/screenshots

‎.spelling

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
addon
77
1
88
vue
9-
svelte
109
webcomponents
1110
aurelia
1211
iframe

‎package.json

+2-14
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,7 @@
6868
"start": "yarn --cwd examples/official-storybook storybook",
6969
"test": "node ./scripts/test.js",
7070
"test-latest-cra": "yarn --prefix --cwd lib/cli run test-latest-cra",
71-
"test:cli": "npm --prefix lib/cli run test",
72-
"test:e2e-gui": "concurrently --success first --kill-others \"cypress open\" \"yarn serve-storybooks\""
71+
"test:cli": "npm --prefix lib/cli run test"
7372
},
7473
"husky": {
7574
"hooks": {
@@ -111,9 +110,6 @@
111110
]
112111
},
113112
"browserslist": "defaults",
114-
"dependencies": {
115-
"@types/react-native": "^0.61.10"
116-
},
117113
"devDependencies": {
118114
"@babel/cli": "^7.2.3",
119115
"@babel/core": "^7.3.4",
@@ -140,6 +136,7 @@
140136
"@types/lodash": "^4.14.149",
141137
"@types/node": "^12.12.11",
142138
"@types/react": "^16.8.14",
139+
"@types/react-native": "^0.61.10",
143140
"@types/semver": "^6.0.0",
144141
"@types/webpack": "^4.41.0",
145142
"@types/webpack-env": "^1.15.0",
@@ -167,7 +164,6 @@
167164
"enzyme": "^3.9.0",
168165
"enzyme-adapter-react-16": "^1.9.1",
169166
"eslint": "^6.5.1",
170-
"eslint-plugin-cypress": "^2.7.0",
171167
"eslint-plugin-react": "^7.15.1",
172168
"esm": "^3.2.25",
173169
"github-release-from-changelog": "^2.1.0",
@@ -206,23 +202,15 @@
206202
"remark-cli": "^7.0.0",
207203
"remark-lint": "^6.0.4",
208204
"remark-preset-lint-recommended": "^3.0.2",
209-
"riot-jest-transformer": "^2.0.0",
210205
"shelljs": "^0.8.3",
211206
"shx": "^0.3.2",
212207
"sort-package-json": "^1.21.0",
213-
"storybook-chromatic": "^3.0.0",
214-
"svelte": "^3.15.0",
215-
"svelte-jest": "^0.3.0",
216208
"trash": "^6.1.1",
217209
"ts-dedent": "^1.1.0",
218210
"ts-jest": "^24.0.2",
219211
"typescript": "^3.4.0",
220212
"wait-on": "^3.3.0"
221213
},
222-
"optionalDependencies": {
223-
"@cypress/webpack-preprocessor": "^4.1.0",
224-
"cypress": "^3.4.1"
225-
},
226214
"engines": {
227215
"node": ">=8.10.0",
228216
"yarn": ">=1.3.2"

‎scripts/test.js

-7
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,6 @@ const tasks = {
5050
projectLocation: '<all>',
5151
isJest: true,
5252
}),
53-
puppeteer: createProject({
54-
name: `Puppeteer and A11y tests for Official storybook ${chalk.gray('(puppeteer)')}`,
55-
defaultValue: false,
56-
option: '--puppeteer',
57-
projectLocation: path.join(__dirname, '..', 'examples/official-storybook/storyshots-puppeteer'),
58-
isJest: true,
59-
}),
6053
cli: createProject({
6154
name: `Command Line Interface ${chalk.gray('(cli)')}`,
6255
defaultValue: false,

‎yarn.lock

+65-1,028
Large diffs are not rendered by default.

1 commit comments

Comments
 (1)
Please sign in to comment.