File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ install:
1919script :
2020- npm run test:lint
2121- npm run test:unit
22- - npm run clean && $(npm bin)/webpack --colors --bail
22+ - npm run clean && $(npm bin)/webpack --colors --bail --silent
2323- npm run test:integration
2424deploy :
2525- provider : script
Original file line number Diff line number Diff line change 1414 < / script>
1515 <!-- / Sentry -->
1616 < % } %>
17- <script src =" static/javascripts/opal.min.js" onload =" Opal.load('opal')" ></script >
17+ <script src =" static/javascripts/opal.min.js"
18+ onload =" Opal.load('opal');
19+ Opal.config.unsupported_features_severity = 'ignore';" >
20+ </script >
1821 <script src =" static/javascripts/opal-parser.min.js"
19- onload =" Opal.load('opal-parser'); Opal.load('parser'); Opal.load('parser/ruby23');
22+ onload =" Opal.load('opal-parser');
23+ Opal.load('parser');
24+ Opal.load('parser/ruby23');
2025 Opal.Parser.CurrentRuby = Opal.Parser.Ruby23;" >
2126 </script >
2227 </head >
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ if (typeof (window) !== 'undefined') {
66 globalObject = window ;
77}
88globalObject . Opal = require ( 'opal-runtime' ) . Opal ;
9+ globalObject . Opal . config . unsupported_features_severity = 'ignore' ;
10+
911require ( 'opal-compiler' ) ;
1012globalObject . Opal . load ( 'parser' ) ;
1113globalObject . Opal . load ( 'parser/ruby25' ) ;
You can’t perform that action at this time.
0 commit comments