Skip to content

Commit a3ce081

Browse files
committed
Merge branch 'next' into norbert/fix-no-install-bug
2 parents 66221ac + 81cdbba commit a3ce081

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

code/addons/docs/docs/docspage.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,9 @@ That being said, there is a system in place to remove the necessity of this trad
142142

143143
```js
144144
import React from 'react';
145+
import { render } from 'react-dom';
145146
import { addParameters } from '@storybook/vue';
146147
import toReact from '@egoist/vue-to-react';
147-
import { render } from 'react-dom';
148148

149149
addParameters({
150150
docs: {

scripts/vite-ecosystem-ci/before-test.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
* This is necessary because the sandbox package.json is used to run the tests and the resolutions are needed to run the tests.
44
* The vite-ecosystem-ci, though, sets the resolutions in the root package.json.
55
*/
6+
import fs from 'node:fs';
7+
import path from 'node:path';
8+
import { fileURLToPath } from 'node:url';
9+
610
import { execa, execaCommand } from 'execa';
7-
import fs from 'fs';
8-
import path from 'path';
9-
import { fileURLToPath } from 'url';
1011

1112
const filename = fileURLToPath(import.meta.url);
1213
const dirname = path.dirname(filename);

0 commit comments

Comments
 (0)