File tree 10 files changed +16
-9
lines changed
extensionHostWorker/common
monaco-editor/release/min/vs/language/typescript 10 files changed +16
-9
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,13 @@ const staticAssets = [
30
30
from : 'packages/app/static' ,
31
31
to : 'static' ,
32
32
} ,
33
+ {
34
+ from : isDev
35
+ ? 'standalone-packages/codesandbox-browserfs/build'
36
+ : 'standalone-packages/codesandbox-browserfs/dist' ,
37
+ to : 'static/browserfs8' ,
38
+ } ,
39
+ // For caching purposes
33
40
{
34
41
from : isDev
35
42
? 'standalone-packages/codesandbox-browserfs/build'
Original file line number Diff line number Diff line change 57
57
</ script >
58
58
<!-- End Google Tag Manager -->
59
59
<!-- <script async src="//cdn.headwayapp.co/widget.js"></script> -->
60
- < script src ="<%= webpackConfig.output.publicPath %>static/browserfs7 /browserfs<%=process.env.NODE_ENV
60
+ < script src ="<%= webpackConfig.output.publicPath %>static/browserfs8 /browserfs<%=process.env.NODE_ENV
61
61
=== 'development' ? '' : '.min'%>.js "
62
62
type ="text/javascript "> </ script >
63
63
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import Linter from 'eslint/lib/linter';
3
3
import monkeypatch from './monkeypatch-babel-eslint' ;
4
4
5
5
self . importScripts (
6
- `${ process . env . CODESANDBOX_HOST } /static/browserfs7 /browserfs.min.js`
6
+ `${ process . env . CODESANDBOX_HOST } /static/browserfs8 /browserfs.min.js`
7
7
) ;
8
8
9
9
/* eslint-disable global-require */
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ export const initializePolyfills = () => {
21
21
22
22
export const loadBrowserFS = ( ) => {
23
23
ctx . importScripts (
24
- `${ process . env . CODESANDBOX_HOST } /static/browserfs7 /browserfs.min.js`
24
+ `${ process . env . CODESANDBOX_HOST } /static/browserfs8 /browserfs.min.js`
25
25
) ;
26
26
} ;
27
27
Original file line number Diff line number Diff line change 39
39
</ script >
40
40
<!-- End Google Tag Manager -->
41
41
42
- < script src ="<%= webpackConfig.output.publicPath %>static/browserfs7 /browserfs<%=process.env.NODE_ENV
42
+ < script src ="<%= webpackConfig.output.publicPath %>static/browserfs8 /browserfs<%=process.env.NODE_ENV
43
43
=== 'development' ? '' : '.min'%>.js "
44
44
type ="text/javascript "> </ script >
45
45
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import loadPolyfills from '@codesandbox/common/lib/load-dynamic-polyfills';
3
3
require ( 'app/config/polyfills' ) ;
4
4
5
5
self . importScripts (
6
- `${ process . env . CODESANDBOX_HOST } /static/browserfs7 /browserfs.min.js`
6
+ `${ process . env . CODESANDBOX_HOST } /static/browserfs8 /browserfs.min.js`
7
7
) ;
8
8
9
9
self . process = self . BrowserFS . BFSRequire ( 'process' ) ;
Original file line number Diff line number Diff line change 1
1
self . importScripts (
2
- `${ process . env . CODESANDBOX_HOST } /static/browserfs7 /browserfs.min.js`
2
+ `${ process . env . CODESANDBOX_HOST } /static/browserfs8 /browserfs.min.js`
3
3
) ;
4
4
5
5
self . process = self . BrowserFS . BFSRequire ( 'process' ) ;
Original file line number Diff line number Diff line change 8
8
< link rel ="manifest " href ="/manifest.json ">
9
9
< link rel ="shortcut icon " href ="/favicon.ico ">
10
10
< link rel ="mask-icon " href ="csb-ios.svg " color ="#fff ">
11
- < script src ="<%= webpackConfig.output.publicPath %>static/browserfs7 /browserfs.min.js "
11
+ < script src ="<%= webpackConfig.output.publicPath %>static/browserfs8 /browserfs.min.js "
12
12
type ="text/javascript "> </ script >
13
13
14
14
< script >
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ declare global {
40
40
// @ts -ignore
41
41
const oldamd = self . define . amd ;
42
42
( self as any ) . define . amd = null ;
43
- ( self as any ) . importScripts ( `/static/browserfs7 /browserfs.min.js` ) ;
43
+ ( self as any ) . importScripts ( `/static/browserfs8 /browserfs.min.js` ) ;
44
44
( self as any ) . define . amd = oldamd ;
45
45
46
46
( self as any ) . BrowserFS = BrowserFS ;
You can’t perform that action at this time.
0 commit comments