Skip to content

Commit 729b9f2

Browse files
author
Ives van Hoorne
committed
Update
1 parent 3898295 commit 729b9f2

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
"packages/app",
3232
"packages/common",
3333
"packages/codesandbox-api",
34-
"packages/sandpack",
35-
"packages/react-sandpack"
34+
"packages/smooshpack",
35+
"packages/react-smooshpack"
3636
],
3737
"devDependencies": {
3838
"all-contributors-cli": "^4.3.0",

packages/react-sandpack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-smooshpack",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"description": "",
55
"keywords": [],
66
"license": "SEE LICENSE.MD IN ROOT",

packages/react-sandpack/rollup.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function getConfig({ isUMD }) {
3535
watch: {
3636
include: 'src/**',
3737
},
38-
external: isUMD ? ['react'] : id => id === 'react' || /codemirror/.test(id),
38+
external: isUMD ? [] : id => id === 'react' || /codemirror/.test(id),
3939
plugins: [
4040
// Compile TypeScript files
4141
typescript({ useTsconfigDeclarationDir: true }),

packages/react-sandpack/src/components/SandpackProvider/SandpackProvider.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 { Broadcast } from 'react-broadcast';
3-
import { Manager, generatePackageJSON } from 'sandpack';
3+
import { Manager, generatePackageJSON } from 'smooshpack';
44
import { listen } from 'codesandbox-api';
55

66
import { IFile, IFiles, IManagerState } from '../../types';

0 commit comments

Comments
 (0)