proscenium 0.1.0.alpha4-x86_64-linux → 0.1.1-x86_64-linux
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/bin/esbuild +0 -0
- data/lib/proscenium/compilers/esbuild.js +3 -2
- data/lib/proscenium/version.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: 8cb09bd3aacc4ffeec61de7c9aed8795432a096ddec4490f44036c2492d04b7b
|
4
|
+
data.tar.gz: 7a173194f536f01294d18f756da7134e736e892135394325b09ee51765ec29cd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe234a1042f3c813a57c3a1f0edadf11f1d702fd2825cf706a91c06b3e50147864532ddc6e1085cca61f1f4400958104bbb63041cd5a24c400b6800eb9103985
|
7
|
+
data.tar.gz: 42664f98b4e0c74c6ddeab211e73d1c071fad71d335a0664df35cb5b3ef72d25c63a86fbee294725bfb460a21b0c2b2bb733d1afed77bb705699ce5eda9f8bd8
|
data/bin/esbuild
CHANGED
Binary file
|
@@ -123,7 +123,7 @@ async function main(paths = [], options = {}) {
|
|
123
123
|
}
|
124
124
|
|
125
125
|
if (!debug) {
|
126
|
-
params.sourcemap = isTest ? false :
|
126
|
+
params.sourcemap = isProd || isTest ? false : 'inline'
|
127
127
|
}
|
128
128
|
|
129
129
|
let result
|
@@ -142,7 +142,8 @@ async function main(paths = [], options = {}) {
|
|
142
142
|
if (write) {
|
143
143
|
return new TextEncoder().encode(JSON.stringify(result))
|
144
144
|
} else {
|
145
|
-
|
145
|
+
const fileIndex = params.sourcemap === 'linked' ? 1 : 0
|
146
|
+
return result.outputFiles[fileIndex].contents
|
146
147
|
}
|
147
148
|
}
|
148
149
|
|
data/lib/proscenium/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: proscenium
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: x86_64-linux
|
6
6
|
authors:
|
7
7
|
- Joel Moss
|
@@ -200,9 +200,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
200
200
|
version: 2.7.0
|
201
201
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
202
202
|
requirements:
|
203
|
-
- - "
|
203
|
+
- - ">="
|
204
204
|
- !ruby/object:Gem::Version
|
205
|
-
version:
|
205
|
+
version: '0'
|
206
206
|
requirements: []
|
207
207
|
rubygems_version: 3.3.7
|
208
208
|
signing_key:
|