Skip to content

Commit

Permalink
Merge pull request #28854 from storybookjs/norbert/formatting-fixes-next
Browse files Browse the repository at this point in the history
Linting: Formatting fixes on next
  • Loading branch information
ndelangen authored Aug 9, 2024
2 parents 425bec6 + fd5bd11 commit 81cdbba
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion code/addons/docs/docs/docspage.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,9 @@ That being said, there is a system in place to remove the necessity of this trad

```js
import React from 'react';
import { render } from 'react-dom';
import { addParameters } from '@storybook/vue';
import toReact from '@egoist/vue-to-react';
import { render } from 'react-dom';

addParameters({
docs: {
Expand Down
9 changes: 5 additions & 4 deletions scripts/vite-ecosystem-ci/before-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
* This is necessary because the sandbox package.json is used to run the tests and the resolutions are needed to run the tests.
* The vite-ecosystem-ci, though, sets the resolutions in the root package.json.
*/
import fs from 'fs';
import path from 'path';
import { fileURLToPath } from 'url';
import { execaCommand, execa } from 'execa';
import fs from 'node:fs';
import path from 'node:path';
import { fileURLToPath } from 'node:url';

import { execa, execaCommand } from 'execa';

const filename = fileURLToPath(import.meta.url);
const dirname = path.dirname(filename);
Expand Down

0 comments on commit 81cdbba

Please sign in to comment.