Skip to content

Commit f6cd0d9

Browse files
author
Ives van Hoorne
committed
Updates
1 parent 90f9ea1 commit f6cd0d9

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

packages/react-sandpack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"lint": "tslint -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
2222
"prebuild": "rimraf dist && rimraf es",
2323
"build":
24-
"tsc --module commonjs && rollup -c rollup.config.ts && yarn build:min && typedoc --out docs --target es6 --theme minimal --mode file src && gulp build",
24+
"tsc && rollup -c rollup.config.ts && yarn build:min && typedoc --out docs --target es6 --theme minimal --mode file src && gulp build",
2525
"build:min": "cross-env BUILD_MINIFY=1 rollup -c rollup.config.ts",
2626
"start": "npm-run-all --parallel watch:**",
2727
"watch:rollup": "rollup -c rollup.config.ts -w",

packages/react-sandpack/src/components/FileExplorer/File/File.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import * as React from 'react';
2-
import * as classNames from 'classnames';
2+
import classNames from 'classnames';
33

44
import cn from '../../../utils/cn';
55

packages/react-sandpack/src/components/Navigator/Navigator.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as React from 'react';
22
import { listen, dispatch } from 'codesandbox-api';
3-
import * as classNames from 'classnames';
3+
import classNames from 'classnames';
44

55
import RefreshIcon from './RefreshIcon';
66
import withSandpack from '../../utils/with-sandpack';

packages/react-sandpack/src/components/TranspiledCodeView/TranspiledCodeView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as React from 'react';
22
import { listen } from 'codesandbox-api';
33
import { Controlled } from 'react-codemirror2';
44

5-
import * as classNames from 'classnames';
5+
import classNames from 'classnames';
66

77
import { ISandpackContext } from '../../types';
88

0 commit comments

Comments
 (0)