isomorfeus-asset-manager 0.14.14 → 0.14.15
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +5 -1
- data/lib/isomorfeus/asset_manager/version.rb +1 -1
- data/lib/isomorfeus/asset_manager.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2d12a6934f43c1c263059200fe3fae784c11235faeee871bd439e71ec4bd4e40
|
4
|
+
data.tar.gz: e952047d1849071d3e46cb8f2a7b49039f8c60099d4e7f7877301ff9e3d2223a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cc5328b6425a14068d993b276c67752e9a4658e37f036b7acc941022ea6be7136ed3c0a0f449e15af417c9c19810f60300a6c44b69fba458909e448d32aec605
|
7
|
+
data.tar.gz: e68a2ad8c0b69756b37f656f39befc1b8acee6ac9d792a583c8923adfbdf77b510f39b5bf188372f75c850d51569a2c64cc71ff958448a26917ab5d4c76a9f8b
|
data/README.md
CHANGED
@@ -6,10 +6,14 @@
|
|
6
6
|
|
7
7
|
Convenient and well performing on demand asset bundling for the isomorfeus framework project, internally using esbuild (esbuild-wasm).
|
8
8
|
|
9
|
-
Version follows esbuild version: 0.
|
9
|
+
Version follows esbuild version: 0.14.x comes with esbuild 0.14.y.
|
10
10
|
|
11
11
|
No need to install esbuild separately, everything bundled ready to go.
|
12
12
|
However, if within the project the 'esbuild' npm package is installed in node_modules, that version will be used instead.
|
13
13
|
|
14
14
|
### Community and Support
|
15
15
|
At the [Isomorfeus Framework Project](https://isomorfeus.com)
|
16
|
+
|
17
|
+
### Targets
|
18
|
+
By default bundles for browsers using the 'es6' target of esbuild.
|
19
|
+
By default bundles for node using the 'node16' target of esbuild.
|
@@ -169,7 +169,7 @@ module Isomorfeus
|
|
169
169
|
publicPath: '#{asset.browser? ? Isomorfeus.assets_path : @output_path}',
|
170
170
|
sourcemap: #{(!Isomorfeus.production? && asset.browser?) ? 'true' : 'false'},
|
171
171
|
splitting: false,
|
172
|
-
target: 'es6',
|
172
|
+
target: '#{asset.browser? ? 'es6' : 'node16' }',
|
173
173
|
write: true
|
174
174
|
}).then((result) => { global.res_meta = result.metafile; return result; });
|
175
175
|
JAVASCRIPT
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: isomorfeus-asset-manager
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.14.
|
4
|
+
version: 0.14.15
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jan Biedermann
|
@@ -44,14 +44,14 @@ dependencies:
|
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 0.5.
|
47
|
+
version: 0.5.2
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 0.5.
|
54
|
+
version: 0.5.2
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: listen
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|