Skip to content

Commit 36211ca

Browse files
author
Ives van Hoorne
committed

File tree

5 files changed

+39
-35
lines changed

5 files changed

+39
-35
lines changed

packages/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
"cerebral": "^4.0.0",
116116
"circular-json": "^0.4.0",
117117
"codemirror": "^5.27.4",
118-
"codesandbox-api": "^0.0.17",
118+
"codesandbox-api": "^0.0.18",
119119
"codesandbox-import-utils": "^1.2.3",
120120
"color": "^0.11.4",
121121
"compare-versions": "^3.1.0",

packages/codesandbox-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codesandbox-api",
3-
"version": "0.0.17",
3+
"version": "0.0.18",
44
"description": "",
55
"keywords": [],
66
"main": "dist/codesandbox.umd.js",

packages/react-sandpack/package.json

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
{
22
"name": "react-smooshpack",
3-
"version": "0.0.19",
3+
"version": "0.0.20",
44
"description": "",
55
"keywords": [],
66
"license": "SEE LICENSE.MD IN ROOT",
77
"main": "dist/react-sandpack.js",
88
"module": "es/react-sandpack.js",
99
"jsnext:main": "es/react-sandpack.js",
1010
"typings": "dist/types/react-sandpack.d.ts",
11-
"files": ["dist", "es"],
11+
"files": [
12+
"dist",
13+
"es"
14+
],
1215
"sideEffects": false,
1316
"author": "Ives van Hoorne <[email protected]>",
1417
"repository": {
@@ -21,8 +24,7 @@
2124
"scripts": {
2225
"lint": "tslint -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
2326
"prebuild": "rimraf dist && rimraf es",
24-
"build":
25-
"tsc && rollup -c rollup.config.ts && yarn build:min && typedoc --out docs --target es6 --theme minimal --mode file src && gulp build",
27+
"build": "tsc && rollup -c rollup.config.ts && yarn build:min && typedoc --out docs --target es6 --theme minimal --mode file src && gulp build",
2628
"build:min": "cross-env BUILD_MINIFY=1 rollup -c rollup.config.ts",
2729
"start": "npm-run-all --parallel watch:**",
2830
"watch:rollup": "rollup -c rollup.config.ts -w",
@@ -49,17 +51,23 @@
4951
},
5052
"validate-commit-msg": {
5153
"types": "conventional-commit-types",
52-
"helpMessage":
53-
"Use \"npm run commit\" instead, we use conventional-changelog format :) (https://github.com/commitizen/cz-cli)"
54+
"helpMessage": "Use \"npm run commit\" instead, we use conventional-changelog format :) (https://github.com/commitizen/cz-cli)"
5455
}
5556
},
5657
"jest": {
5758
"transform": {
5859
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
5960
},
6061
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
61-
"moduleFileExtensions": ["ts", "tsx", "js"],
62-
"coveragePathIgnorePatterns": ["/node_modules/", "/test/"],
62+
"moduleFileExtensions": [
63+
"ts",
64+
"tsx",
65+
"js"
66+
],
67+
"coveragePathIgnorePatterns": [
68+
"/node_modules/",
69+
"/test/"
70+
],
6371
"coverageThreshold": {
6472
"global": {
6573
"branches": 90,
@@ -74,12 +82,12 @@
7482
"dependencies": {
7583
"classnames": "^2.2.5",
7684
"codemirror": "^5.35.0",
77-
"codesandbox-api": "^0.0.17",
85+
"codesandbox-api": "^0.0.18",
7886
"codesandbox-import-utils": "^1.2.3",
7987
"react-broadcast": "^0.6.2",
8088
"react-codemirror2": "^4.0.1",
8189
"rollup-plugin-scss": "^0.4.0",
82-
"smooshpack": "^0.0.19"
90+
"smooshpack": "^0.0.20"
8391
},
8492
"peerDependencies": {
8593
"react": "^16.0.0"

packages/sandpack/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "smooshpack",
3-
"version": "0.0.19",
3+
"version": "0.0.20",
44
"description": "",
55
"keywords": [],
66
"main": "dist/sandpack.umd.js",
@@ -74,7 +74,7 @@
7474
"mapCoverage": true
7575
},
7676
"dependencies": {
77-
"codesandbox-api": "^0.0.17",
77+
"codesandbox-api": "^0.0.18",
7878
"codesandbox-import-utils": "^1.2.3"
7979
},
8080
"devDependencies": {

standalone-packages/codesandbox-browserfs/package.json

Lines changed: 17 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
{
22
"name": "codesandbox-browserfs",
33
"version": "2.0.0",
4+
"private": true,
45
"description": "A filesystem in your browser!",
56
"main": "build/browserfs.min.js",
67
"typings": "dist/browserfs",
7-
"keywords": ["filesystem", "node", "storage"],
8+
"keywords": [
9+
"filesystem",
10+
"node",
11+
"storage"
12+
],
813
"homepage": "https://github.com/jvilk/BrowserFS",
9-
"author":
10-
"John Vilk <[email protected]> (http://people.cs.umass.edu/~jvilk)",
14+
"author": "John Vilk <[email protected]> (http://people.cs.umass.edu/~jvilk)",
1115
"license": "MIT",
1216
"repository": {
1317
"type": "git",
@@ -28,16 +32,16 @@
2832
"@types/body-parser": "^1.16.4",
2933
"@types/express": "^4.0.36",
3034
"@types/filesystem": "0.0.28",
31-
"@types/mocha": "^2.2.41",
3235
"@types/isomorphic-fetch": "^0.0.34",
36+
"@types/mocha": "^2.2.41",
3337
"@types/node": "~7.0",
3438
"@types/rimraf": "~0.0.28",
3539
"archiver": "^2.0.0",
3640
"async-es": "^2.5.0",
3741
"bfs-path": "~0.1.2",
3842
"bfs-process": "~0.1.6",
39-
"buffer": "^5.0.7",
4043
"body-parser": "^1.17.2",
44+
"buffer": "^5.0.7",
4145
"detect-browsers": "~2.0.0",
4246
"dropbox": "^2.5.7",
4347
"express": "^4.15.3",
@@ -80,10 +84,8 @@
8084
"watch:webpack": "webpack -w --config src/webpack.config.js",
8185
"build:webpack-release": "webpack -p --config src/webpack.config.js",
8286
"watch:webpack-release": "webpack -w -p --config src/webpack.config.js",
83-
"build:all":
84-
"npm-run-all --parallel build:tsc build:scripts --sequential build:rollup --parallel build:webpack build:webpack-release",
85-
"start":
86-
"npm-run-all build --parallel watch:tsc watch:scripts watch:rollup watch:webpack watch:webpack-release",
87+
"build:all": "npm-run-all --parallel build:tsc build:scripts --sequential build:rollup --parallel build:webpack build:webpack-release",
88+
"start": "npm-run-all build --parallel watch:tsc watch:scripts watch:rollup watch:webpack watch:webpack-release",
8789
"test:build:tsc": "tsc -p test",
8890
"test:watch:tsc": "tsc --watch -p test",
8991
"test:build:rollup": "rollup -c test/rollup.config.js",
@@ -92,26 +94,20 @@
9294
"test:watch:rollup-worker": "rollup -w -c test/rollup.worker.config.js",
9395
"test:build:webpack": "webpack --config test/webpack.config.js",
9496
"test:watch:webpack": "webpack -w --config test/webpack.config.js",
95-
"test:build":
96-
"npm-run-all test:build:tsc --parallel test:build:rollup test:build:rollup-worker --sequential test:build:webpack",
97-
"test:watch":
98-
"npm-run-all --parallel test:watch:tsc test:watch:rollup test:watch:rollup-worker test:watch:webpack",
97+
"test:build": "npm-run-all test:build:tsc --parallel test:build:rollup test:build:rollup-worker --sequential test:build:webpack",
98+
"test:watch": "npm-run-all --parallel test:watch:tsc test:watch:rollup test:watch:rollup-worker test:watch:webpack",
9999
"dist:build:node": "tsc -p src/tsconfig.node.json",
100100
"script:make_dist": "node build/scripts/make_dist.js",
101101
"build": "npm-run-all build:all lint script:make_dist dist:build:node",
102102
"script:make_fixture_loader": "node build/scripts/make_fixture_loader.js",
103103
"script:make_test_launcher": "node build/scripts/make_test_launcher.js",
104104
"script:make_zip_fixtures": "node build/scripts/make_zip_fixtures",
105-
"script:make_http_index":
106-
"node build/scripts/make_http_index.js test/fixtures/httpdownloadfs/listings.json",
105+
"script:make_http_index": "node build/scripts/make_http_index.js test/fixtures/httpdownloadfs/listings.json",
107106
"test:karma": "karma start karma.config.js",
108-
"test:prepare":
109-
"npm-run-all build:scripts script:make_fixture_loader script:make_test_launcher test:build script:make_zip_fixtures script:make_http_index",
107+
"test:prepare": "npm-run-all build:scripts script:make_fixture_loader script:make_test_launcher test:build script:make_zip_fixtures script:make_http_index",
110108
"test": "npm-run-all test:prepare test:karma",
111-
"watch-test":
112-
"npm-run-all test:prepare --parallel watch:scripts test:watch test:karma",
113-
"docs":
114-
"typedoc --mode modules --out doc --excludePrivate --readme src/DOCS.md --name BrowserFS --module umd src",
109+
"watch-test": "npm-run-all test:prepare --parallel watch:scripts test:watch test:karma",
110+
"docs": "typedoc --mode modules --out doc --excludePrivate --readme src/DOCS.md --name BrowserFS --module umd src",
115111
"install-dependencies": "yarn install"
116112
},
117113
"dependencies": {

0 commit comments

Comments
 (0)