Skip to content

Commit

Permalink
fixup! fmt
Browse files Browse the repository at this point in the history
Signed-off-by: Sam Gammon <sam@elide.dev>
  • Loading branch information
sgammon committed Mar 3, 2025
1 parent e957fb1 commit aa1c73a
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 19 deletions.
13 changes: 7 additions & 6 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,13 @@ systemProp.org.gradle.s3.endpoint = https://8d4252856750d8486c1740c063bc5a40.r2.
org.gradle.parallel = true
org.gradle.caching = true
org.gradle.configureondemand = true
org.gradle.jvmargs = -XX:MaxMetaspaceSize=1024m -XX:+UseG1GC -Xmx3g --add-opens=java.base/java.util.\
function=ALL-UNNAMED --add-opens=java.base/java.util.stream=ALL-UNNAMED --add-opens=java.base/sun.nio.ch=ALL-UNNAMED \
--add-opens=java.base/java.nio.channels=ALL-UNNAMED --add-opens=java.base/java.nio.channels.spi=ALL-UNNAMED \
--add-opens=java.base/java.util.concurrent=ALL-UNNAMED --add-opens=java.base/java.util.concurrent.locks=ALL-UNNAMED \
--add-opens=java.base/java.lang.ref=ALL-UNNAMED --add-opens=java.base/java.text=ALL-UNNAMED --add-opens=java.base/sun.\
util.calendar=ALL-UNNAMED --enable-native-access=ALL-UNNAMED
org.gradle.jvmargs = \
-XX:MaxMetaspaceSize=1024m -XX:+UseG1GC -Xmx3g --add-opens=java.base/java.util.function=ALL-UNNAMED --add-opens=java.\
base/java.util.stream=ALL-UNNAMED --add-opens=java.base/sun.nio.ch=ALL-UNNAMED --add-opens=java.base/java.nio.\
channels=ALL-UNNAMED --add-opens=java.base/java.nio.channels.spi=ALL-UNNAMED --add-opens=java.base/java.util.\
concurrent=ALL-UNNAMED --add-opens=java.base/java.util.concurrent.locks=ALL-UNNAMED --add-opens=java.base/java.lang.\
ref=ALL-UNNAMED --add-opens=java.base/java.text=ALL-UNNAMED --add-opens=java.base/sun.util.calendar=ALL-UNNAMED \
--enable-native-access=ALL-UNNAMED
org.gradle.unsafe.isolated-projects = false
org.gradle.configuration-cache = false
org.gradle.configuration-cache.problems = warn
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
# License for the specific language governing permissions and limitations under the License.
#

Args = --no-fallback --features=elide.runtime.feature.python.PythonFeature --features=elide.runtime.feature.engine.\
Args = \
--no-fallback --features=elide.runtime.feature.python.PythonFeature --features=elide.runtime.feature.engine.\
NativeConsoleFeature --features=elide.runtime.feature.engine.NativeTransportFeature --features=elide.runtime.feature.\
jvm.JvmFeature --features=elide.runtime.feature.ruby.RubyFeature
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

Requires = language:python

Args = --initialize-at-build-time=com.oracle.graal.python,com.oracle.truffle.regex,jline,org.fusesource \
--add-exports=org.graalvm.nativeimage/org.graalvm.nativeimage.impl=ALL-UNNAMED --features=elide.runtime.plugins.\
python.features.BouncyCastleFeature,elide.runtime.plugins.python.features.JNIFeature
Args = \
--initialize-at-build-time=com.oracle.graal.python,com.oracle.truffle.regex,jline,org.fusesource --add-exports=org.\
graalvm.nativeimage/org.graalvm.nativeimage.impl=ALL-UNNAMED --features=elide.runtime.plugins.python.features.\
BouncyCastleFeature,elide.runtime.plugins.python.features.JNIFeature
8 changes: 4 additions & 4 deletions packages/types/src/ambient.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@

declare module "*.jsonc" {
// biome-ignore lint/suspicious/noExplicitAny: <explanation>
const contents: any;
export = contents;
const contents: any
export = contents
}

declare module "*.json" {
// biome-ignore lint/suspicious/noExplicitAny: <explanation>
const contents: any;
export = contents;
const contents: any
export = contents
}
4 changes: 2 additions & 2 deletions packages/types/src/elide.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
*/

export interface ElideGlobal {
version: string;
version: string
}

declare global {
const Elide: ElideGlobal;
const Elide: ElideGlobal
}
6 changes: 3 additions & 3 deletions packages/types/src/sqlite.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@

declare module "elide:sqlite" {
export class Database {
constructor(name?: string);
exec(sql: string): void;
constructor(name?: string)
exec(sql: string): void
// biome-ignore lint/suspicious/noExplicitAny: <explanation>
query(sql: string): any;
query(sql: string): any
}
}

0 comments on commit aa1c73a

Please sign in to comment.