337 Commits

Author SHA1 Message Date
jamesgeorge007
c39fc1df3e test: migrate to jest for e2e tests 2020-11-28 13:09:23 +05:30
Norbert de Langen
e9708b526a
minor webpack upgrade 2020-11-05 09:43:05 +01:00
Gaëtan Maisse
89d0ed9b7d
Apply solution discussed in monthly meeting:
- Set `react` and `react-dom` as peerDeps for all `lib` packages needing them
- Set `react` and `react-dom` as peerDeps + optional tag for all `addon` packages needing them
- Set `react` and `react-dom` as regular deps for all non react apps
- Remove `react` and `react-dom` from root `package.json`
- Set a fixed version of `react` in all examples

Also:
- Use "^16.8.0 || ^17.0.0" version range as some packages need React Hooks
2020-11-02 20:49:31 +01:00
Gaëtan Maisse
0c0a4dcb5c
Merge branch 'next' into tech/move-react-and-react-dom-to-peer-deps 2020-11-02 20:15:29 +01:00
Gaëtan Maisse
eaa9410a4d
Move react and react-dom to peer deps
`react` and `react-dom` should always be peer dependencies of packages that provide react components to ensure that there's a single instance of those.

Plus, all packages depending on a package with `react` as peerDep should also have it as peerDeps (transitive peer dependencies) or as deps.

Finally, packages in `examples/*` are "end" packages using Storybook so they must provide `react` and `react-dom` in their deps/devDeps
2020-11-02 08:08:48 +01:00
Michael Shilman
eb0653651b Core: Align react and react-dom version specifiers 2020-11-02 12:56:11 +08:00
Michael Shilman
d152532d8f Core: Allow React-DOM 17.x 2020-10-28 21:02:37 +08:00
Clément PRÉVOT
27518dc277
Core/CLI: Update ShellJS dep version
Signed-off-by: Clément PRÉVOT <clement.prevot@backmarket.com>
2020-10-16 16:22:59 +02:00
Gaëtan Maisse
25999063aa
Merge branch 'next' into tech/no-peer-dep-react 2020-08-29 20:23:10 +02:00
Gaëtan Maisse
539df0ccfb
chore: remove files related to old CLI + Yarn 2 tests
These files are no more used, Yarn 2 support is covered with the E2E tests.
2020-08-23 18:54:00 +02:00
Gaëtan Maisse
26f5104dca
chore: remove file used to run the olf CLI tests against latest CRA
This is covered by E2E tests (example-v2).
CI run of theses tests were already remove few months ago, see:
ff7862554e
2020-08-23 18:48:02 +02:00
Norbert de Langen
48a0faf4b0
REMOVE more peerDependencies on react & react-dom && SYNC versions of react 2020-07-22 11:36:23 +02:00
Norbert de Langen
64a9fc47cb
DELETE the angular cli fixtures (we have coverage for this in the v2 tests) 2020-06-30 15:04:24 +02:00
Norbert de Langen
e9cc232db5
REMOVE fixtures we already have v2 tests for 2020-06-29 16:46:41 +02:00
tooppaaa
56f208b5b7 fix: yarn 2 cli 2020-06-12 16:34:19 +02:00
tooppaaa
4905904bd2 CLI: move mutualise scripts 2020-06-11 23:25:04 +02:00
Gaëtan Maisse
d7687ade18
refactor: replace semver by @storybook/semver
`@storybook/semver` is a browser friendly fork of `semver`.
We use it to avoid issue with IE11 as classic "compiled" `semver` is now compatible with it.
If we just recompile `semver` from `node_modules` it ends with a package that `require('core-js')` but `core-js` is not listed in the dependency. And so Yarn 2 throw an error.
So to avoid that we need to use a "proper" dependency which is `semver` recompile and with all needed dependencies in its package.json.
2020-06-03 20:07:07 +02:00
Paul Grau
b50442f992 Revert removal of babel-preset-vue 2020-05-20 22:16:51 +09:00
Paul Grau
7b8e614441 Apply babel fix to vue fixture as well 2020-05-20 20:33:22 +09:00
Michael Shilman
3671955f56 Migrate sfc_vue fixture to use babel-preset-vue 2020-05-20 18:42:50 +08:00
Norbert de Langen
448bdddd29
Merge branch 'next' into tech/ci-example-overhaul-clean
# Conflicts:
#	examples/angular-cli/jest.config.js
#	lib/cli/src/generators/HTML/index.js
#	lib/cli/src/generators/HTML/template-csf/stories/0-Welcome.stories.js
#	yarn.lock
2020-05-18 14:21:17 +02:00
Norbert de Langen
8728e2a748
DELETE react-static fixture 2020-05-15 02:19:28 +02:00
Norbert de Langen
74c1a7c0aa
REMOVE tslint instead
bye bye
2020-05-14 17:06:18 +02:00
tooppaaa
057ab35ea9 Merge remote-tracking branch 'origin/next' into tech/ci-example-overhaul-clean 2020-05-11 17:32:50 +02:00
Gaëtan Maisse
37f29dc707
test(cli): don't test CLI against react_scripts fixtures with Yarn 2
When testing Yarn 2 compatibility of Storybook CLI, we are using Yarn 2 in fixture directories inside a Yarn 1 workspace.
To access local versions of `@storybook` packages we use Yarn 2 `portal` protocol (see berryfy_package_json.js). However, it looks like CRA is not playing well with `portal` protocol and is throwing this kind of error: `Relative imports outside of src/ are not supported.`.

As new E2E tests will be soon available, I just removed the CRA tests instead of trying to hack them a bit more.
2020-05-10 12:58:15 +02:00
tooppaaa
072b774693 core: ci and examples generation 2020-05-09 11:34:50 +02:00
Yann Braga
1f791402f3 feat(cli): automatically detect CSF typescript
- Also remove a section in run_tests.sh which is not necessary anymore,
   given that typescript is automatically detected.
2020-04-25 22:01:39 +02:00
Norbert de Langen
3de3f64279
no message 2020-04-21 01:03:32 +02:00
Norbert de Langen
595a957ea5
REMOVE RN fixtures 2020-04-17 23:16:19 +02:00
Norbert de Langen
e213240348
Merge branch 'next' into fix-cli-tests 2020-04-13 21:13:03 +02:00
Norbert de Langen
51321e8838
FIX 2020-04-13 20:16:34 +02:00
Norbert de Langen
c1fb718f52
FIX 2020-04-13 20:14:17 +02:00
Gaëtan Maisse
a7e966d264 test: remove react_babel_6 refs in CLI tests
There is no more fixture related to `react_babel_6` so I removed all refs to that in scripts used to run CLI tests
2020-04-12 17:37:23 +02:00
Gaëtan Maisse
2c4ccc43d9 test: remove SB config and stories from CLI test fixtures
These fixtures are used to check that `sb init` is properly initializing SB in the fixture context so SB config (and stories) shouldn't be already in the fixture.
Moreover, fixtures were using outdated `config.js` file and a new `main.js` config file is added during initialization causing SB build to fail with:
```
ERR! Error: You have both a "main" and a "config". Please remove the "config" file from your configDir
```
2020-04-12 17:35:32 +02:00
Gaëtan Maisse
f41ac2b3a8 test(cli): add missing dep in riot fixture
`riot-tmpl` is a peerDependency of `riot-compiler`
2020-02-16 16:10:41 +01:00
Gaëtan Maisse
9e4f21640e test(cli): add tests to check Yarn 2 compatibility
These tests mimic the ones done to test SB CLI with "classic" yarn.
However, some magic setup and `package.json` customization are needed in order to make Yarn 2 works inside a Yarn v1 workspace.
2020-02-16 16:10:41 +01:00
Norbert de Langen
0f5b841937
REMOVE babel-6 cli fixture 2020-02-06 11:12:42 +01:00
Norbert de Langen
746b2a4f11
Merge branch 'next' into upgrades
# Conflicts:
#	addons/essentials/package.json
#	addons/notes/package.json
#	addons/storyshots/storyshots-core/package.json
#	app/angular/package.json
#	app/html/package.json
#	app/marko/package.json
#	app/preact/package.json
#	app/react/package.json
#	app/vue/package.json
#	app/web-components/package.json
#	examples/riot-kitchen-sink/package.json
#	examples/vue-kitchen-sink/package.json
#	lib/cli/package.json
#	lib/core/package.json
#	yarn.lock
2020-02-03 13:40:26 +01:00
Norbert de Langen
aa7fa009e8
CHANGE lint-staged config after upgrading 2020-02-03 13:15:59 +01:00
Kai Roeder
38e41c5dd4 add missing css file 2020-02-01 00:23:42 +01:00
Kai Roeder
9bf067d1b8 update cli fixture angular 9 to rc.12 2020-01-31 23:58:23 +01:00
Kai Roeder
1143a22fd7 Merge branch 'next' into add-angular-fixtures 2020-01-31 23:53:19 +01:00
Kai Roeder
99dd642fdc Merge branch 'next' of https://github.com/storybooks/storybook into next 2020-01-31 23:33:57 +01:00
Norbert de Langen
cc39879de9
MIGRATE ember to new "import { hbs } from 'ember-cli-htmlbars'" 2020-01-25 13:25:51 +01:00
Norbert de Langen
26c1417d12
DELETE references to polymer 2020-01-22 16:01:12 +01:00
Norbert de Langen
34816a6d57
REMOVE polymer
It's moved into it's own repo here:
https://github.com/storybookjs/storybook
2020-01-22 15:39:36 +01:00
Kai Roeder
09ed7d1617 wip: use css instead of scss
this is an attempt to debug the CI pipeline that fails because of scss.
this change is not meant to be permanent; scss must work
2019-11-26 23:36:31 +01:00
Kai Röder
61f34e2c89 update angular-9 example to 9.0.0-rc.2 2019-11-19 22:13:24 +01:00
Kai Roeder
93d4142be3 update angular fixture names 2019-11-08 23:38:30 +01:00
Kai Roeder
bede21d22c add angular 9 rc cli fixture 2019-11-08 23:13:47 +01:00