isomorfeus-asset-manager 0.15.9 → 0.15.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/isomorfeus/asset_manager/version.rb +1 -1
- data/lib/isomorfeus-asset-manager.rb +2 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f32c968ef6c3f285621ea0a376b3a4665c7d11341e8fdd7c9840651d9a70b0a9
|
4
|
+
data.tar.gz: 56f139301a94bf1e18499d9027e78ad977611253f74113395cf1c1c8e3ce4f1c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: baad2ff89fe5c403263f85b2cb5c2742306c144ee28db4c593638143463fc8d0576cb3916092dd73cbced416580df25a315bfc8bbd753655412c405e48ecb504
|
7
|
+
data.tar.gz: cd859e3adc60a8af3bd1f27d3fc88b7450f3e9b3d739c062451ce8e6c4f55ac2ed8b5ef2672bb2c9707a7b2bbda04b98a06eb08cb78947d1f1cf4c9b87e66cdb
|
@@ -6,6 +6,7 @@ require 'zlib'
|
|
6
6
|
require 'opal'
|
7
7
|
require 'opal/compiler'
|
8
8
|
require 'opal/builder'
|
9
|
+
require 'opal/builder_scheduler/sequential'
|
9
10
|
require 'oj'
|
10
11
|
require 'rack'
|
11
12
|
require 'rack/utils'
|
@@ -34,3 +35,4 @@ Isomorfeus.node_paths << node_modules if Dir.exist?(node_modules)
|
|
34
35
|
Isomorfeus.node_paths << File.expand_path(File.join(File.dirname(__FILE__), '..', 'node_modules'))
|
35
36
|
Isomorfeus.app_root = File.expand_path('app')
|
36
37
|
Opal.append_path(Isomorfeus.app_root) unless IsoOpal.paths_include?(Isomorfeus.app_root)
|
38
|
+
Opal.builder_scheduler = Opal::BuilderScheduler::Sequential
|