-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #85 from akuleshov7/hotfix/release-hotfix
Hotfixing the module file of ktoml-file in build.gradle to fix KotlinJS
- Loading branch information
Showing
7 changed files
with
66 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
14 changes: 14 additions & 0 deletions
14
ktoml-file/src/macosX64Main/kotlin/com/akuleshov7/ktoml/file/FileUtilsMac.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/** | ||
* File utils to read files using okio | ||
*/ | ||
|
||
package com.akuleshov7.ktoml.file | ||
|
||
import okio.FileSystem | ||
|
||
/** | ||
* Implementation for getting proper file system to read files with okio | ||
* | ||
* @return proper FileSystem | ||
*/ | ||
internal actual fun getOsSpecificFileSystem(): FileSystem = FileSystem.SYSTEM |
14 changes: 14 additions & 0 deletions
14
ktoml-file/src/mingwX64Main/kotlin/com/akuleshov7/ktoml/file/FileUtilsWin.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/** | ||
* File utils to read files using okio | ||
*/ | ||
|
||
package com.akuleshov7.ktoml.file | ||
|
||
import okio.FileSystem | ||
|
||
/** | ||
* Implementation for getting proper file system to read files with okio | ||
* | ||
* @return proper FileSystem | ||
*/ | ||
internal actual fun getOsSpecificFileSystem(): FileSystem = FileSystem.SYSTEM |