Skip to content

Commit

Permalink
Bumping to 0.4.2 for next release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregory Lureau authored and glureau committed Apr 15, 2022
1 parent ea24266 commit b1df4fc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ plugins {

allprojects {
group = "deezer.kustomexport"
version = "0.4.1"
version = "0.4.2"

repositories {
mavenLocal()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ val coroutinesJob = ClassName("kotlinx.coroutines", "Job")
val coroutinesContext = MemberName("kotlin.coroutines", "coroutineContext")
val coroutinesContextJob = MemberName("kotlinx.coroutines", "job")
val coroutinesCancellationException = ClassName("kotlinx.coroutines", "CancellationException")
// Warning, the d.ts code generated will contain 'kotlin.js.Promise' instead of just 'Promise'.
// https://youtrack.jetbrains.com/issue/KT-41096
val coroutinesPromise = ClassName("kotlin.js", "Promise")
val abortController = ClassName("", "AbortController")
val abortSignal = ClassName("", "AbortSignal")
Expand Down
1 change: 0 additions & 1 deletion samples/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"compilerOptions": {
"moduleResolution": "node",
"strict": true,
"noEmitOnError": true
}
}

0 comments on commit b1df4fc

Please sign in to comment.