33652 Commits

Author SHA1 Message Date
Michael Shilman
220fa0eb72 Update root, peer deps, version.ts/json to 6.3.0-alpha.12 [ci skip] 2021-04-20 01:52:17 +08:00
Michael Shilman
b08f85953b 6.3.0-alpha.12 changelog 2021-04-20 01:51:55 +08:00
Michael Shilman
7eb9f89afb
Merge pull request #14358 from storybookjs/angular/refactor-server-test
Angular: Refactor angular server
2021-04-20 01:50:16 +08:00
Michael Shilman
9220d542de
Merge pull request #14650 from storybookjs/cli-rename-template-files-to-jsx
CLI: Rename react template files to jsx
2021-04-20 01:44:42 +08:00
Michael Shilman
076a4db5a7 6.3.0-alpha.11 next.json version file 2021-04-19 22:27:29 +08:00
Michael Shilman
88c9182710 Update git head to 6.3.0-alpha.11, update yarn.lock 2021-04-19 22:23:02 +08:00
Michael Shilman
7620a2978c v6.3.0-alpha.11 v6.3.0-alpha.11 2021-04-19 22:16:43 +08:00
Michael Shilman
fc37a1bbc8 Update root, peer deps, version.ts/json to 6.3.0-alpha.11 [ci skip] 2021-04-19 22:09:47 +08:00
Michael Shilman
4cd106091b 6.3.0-alpha.11 changelog 2021-04-19 22:08:22 +08:00
Michael Shilman
59fab49ea2
Merge pull request #14651 from storybookjs/cli-add-community-builders
CLI: Support community builders in `sb init`
2021-04-19 21:21:04 +08:00
Michael Shilman
59e56e846d CLI: Support community builders in sb init 2021-04-19 18:53:06 +08:00
Michael Shilman
dc11386681 CLI: Rename react template files to jsx 2021-04-19 18:28:46 +08:00
Michael Shilman
3afa7f41c4
Merge pull request #14649 from storybookjs/angular-support-for-addon-ivy
Angular: Support Ivy addon
2021-04-19 18:18:33 +08:00
Kai Röder
bb0856e226 feat(angular): add ivy support 2021-04-19 11:32:17 +02:00
Michael Shilman
ab892489d6
Merge pull request #14647 from paulrosania/add-funding-to-package.json
Add `funding` to manifests
2021-04-19 14:32:23 +08:00
Paul Rosania
5758c65a10 Add funding to manifests 2021-04-18 22:40:36 -07:00
ThibaudAv
4f004183ea refactor(angular): rework angular-cli preset
Rework the code of angular-cli_config and angular-cli_utils to add future features
Improvement:
- Add test for NX
- Use angular core to read the workspace instead of doing it by hand
- Use angular-cli to read the tsconfig
- Redesigned the code to get out the main steps + added error handling
- Express more clearly the webpack config from angular-cli
- Clarification of the logs
- Improvement of the types with those of angular-cli
2021-04-18 23:08:35 +02:00
ThibaudAv
62c344e4c4 test(angular): add more test for framework-preset-angular-cli
Adds tests in order to rework the code in next commit without changing the angular preset behavior
2021-04-18 23:06:25 +02:00
ThibaudAv
82ae93d829 refactor(angular): use the full path to set configFile of TsconfigPathsPlugin with tsConfig 2021-04-18 23:06:24 +02:00
Michael Shilman
c8f9a9564a 6.3.0-alpha.10 next.json version file 2021-04-18 21:29:07 +08:00
Michael Shilman
cec229fee6 Update git head to 6.3.0-alpha.10, update yarn.lock 2021-04-18 21:24:33 +08:00
Michael Shilman
080babf6d7 v6.3.0-alpha.10 v6.3.0-alpha.10 2021-04-18 21:18:41 +08:00
Michael Shilman
e1317347cc Update root, peer deps, version.ts/json to 6.3.0-alpha.10 [ci skip] 2021-04-18 21:11:51 +08:00
Michael Shilman
e77e435ba2 6.3.0-alpha.10 changelog 2021-04-18 21:11:37 +08:00
Michael Shilman
683eb1c271
Merge pull request #14641 from eirslett/bugfix/tweaks-needed-for-vite
ESM tweaks for vite builder
2021-04-18 20:43:25 +08:00
Michael Shilman
c3560f3be6 Temporarily disable ESM test code 2021-04-18 20:23:34 +08:00
Michael Shilman
08fb2cb926
Merge pull request #14640 from huyenltnguyen/docs/minor-correction
docs: correct typo and formatting
2021-04-18 18:08:29 +08:00
Michael Shilman
fc3e0511ba
Update docs/snippets/common/component-story-mdx-argtypes.mdx.mdx 2021-04-18 18:07:56 +08:00
Michael Shilman
e72610a520
Merge pull request #14639 from storybookjs/patricklafrance-patch-1
Fixed link to ShareGate Orbit DS
2021-04-18 17:54:03 +08:00
Eirik Sletteberg
01ff66a678 Re-add deprecated d.ts file as well 2021-04-18 11:09:07 +02:00
Eirik Sletteberg
b4dd61b4bc Re-add (but deprecate) file, for backwards compatibility 2021-04-18 11:07:28 +02:00
Eirik Sletteberg
8b2517f268 Use ESM version of react-syntax-highlighter
The Vite build didn't work with CJS versions of
react-syntax-highlighter. ESM works, and it should
work with Webpack as well.
2021-04-18 10:43:43 +02:00
Eirik Sletteberg
09d5e7bb1c Use default entry point of source-loader
Previously, Storybook was hard-coded to use the CJS version
of @storybook/source-loader. Now, we use the default entrypoint,
which means the build tool will check package.json for the
preferred entry point (CJS or ESM).

(In this case, hard-coding to CJS broke the Vite build.)
2021-04-18 10:43:12 +02:00
Eirik Sletteberg
6e250f9110 Import extraverse with ESM import instead of require()
Reason: When using modern builders like Vite, the source code in Storybook
must be ESM-compatible. The mix of imports and require in the same file
confused the Vite build tool, preventing the essential addons from working.
2021-04-18 10:38:45 +02:00
Huyen Nguyen
d68d4089fb docs: correct typo and formatting 2021-04-18 04:39:54 +07:00
Patrick Lafrance
75002eb165
Fixed link to ShareGate Orbit DS 2021-04-17 15:21:20 -04:00
Michael Shilman
0f6a6b1468
Merge pull request #14637 from peterpeterparker/docs/typo-place-hold
Examples: Move from placehold.it to place-hold.it for mock images
2021-04-17 20:52:18 +08:00
peterpeterparker
def4fb743c docs: missing dash in place-hold.it url 2021-04-17 14:25:08 +02:00
Michael Shilman
50990efd8e
Merge pull request #14636 from Dschungelabenteuer/fix-issue-14580
Modified Swatches keys to avoid duplicates
2021-04-17 05:49:19 +08:00
Michael Shilman
bd88f9e22d 6.3.0-alpha.9 next.json version file 2021-04-17 05:35:19 +08:00
Charles Gruenais
ca184fc0b8 Modified Swatches keys to avoid duplicates 2021-04-16 21:22:44 +02:00
Michael Shilman
d49a95712a Update git head to 6.3.0-alpha.9, update yarn.lock 2021-04-17 00:50:55 +08:00
Michael Shilman
1d75ab7fc1 v6.3.0-alpha.9 v6.3.0-alpha.9 2021-04-17 00:44:29 +08:00
Michael Shilman
4d03f4a2bd Update root, peer deps, version.ts/json to 6.3.0-alpha.9 [ci skip] 2021-04-17 00:38:57 +08:00
Michael Shilman
634094953b 6.3.0-alpha.9 changelog 2021-04-17 00:38:16 +08:00
Michael Shilman
67ce49eeef
Merge pull request #14555 from storybookjs/preact-compat-default
Preact: Add react compat by default
2021-04-17 00:36:46 +08:00
Michael Shilman
e79f12f59e
Merge pull request #14543 from storybookjs/dx-improve-issue-templates
Maintenance: Improve issue templates
2021-04-17 00:17:17 +08:00
Michael Shilman
65b3067e47
Merge pull request #14495 from TheMightyPenguin/fix-description-md-code-snippets-styling
Addon-docs: Fix MD code snippet format inside Description
2021-04-17 00:16:10 +08:00
Michael Shilman
2f88956616 Update storyshots 2021-04-17 00:10:01 +08:00
Michael Shilman
ead9d1c098 Merge branch 'next' into preact-compat-default 2021-04-16 23:59:50 +08:00