Skip to content
This repository was archived by the owner on Sep 20, 2023. It is now read-only.

Commit 811b470

Browse files
author
Ives van Hoorne
committed
Increase max module count
1 parent 5221500 commit 811b470

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codesandbox",
3-
"version": "1.1.13",
3+
"version": "1.1.14",
44
"description": "The CLI used for communicating with CodeSandbox",
55
"main": "lib/index.js",
66
"bin": {

src/commands/deploy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import { login } from './login';
1313
import parseSandbox from '../utils/parse-sandbox';
1414
import FileError from '../utils/parse-sandbox/file-error';
1515

16-
const MAX_MODULE_COUNT = 50;
17-
const MAX_DIRECTORY_COUNT = 30;
16+
const MAX_MODULE_COUNT = 100;
17+
const MAX_DIRECTORY_COUNT = 50;
1818

1919
/**
2020
* Show warnings for the errors that occured during mapping of files, we

0 commit comments

Comments
 (0)