remove webpack and node version fixture

This commit is contained in:
Alexander Nozik 2023-10-03 19:33:39 +03:00
parent 56933ecff3
commit bfb556b013
2 changed files with 4 additions and 7 deletions

View File

@ -7,7 +7,6 @@ package space.kscience.kmath.operations
import space.kscience.kmath.UnstableKMathAPI import space.kscience.kmath.UnstableKMathAPI
import space.kscience.kmath.expressions.Symbol import space.kscience.kmath.expressions.Symbol
import space.kscience.kmath.expressions.symbol
/** /**
* An algebra for generic boolean logic * An algebra for generic boolean logic
@ -61,8 +60,8 @@ public interface LogicAlgebra<T : Any> : Algebra<T> {
public companion object { public companion object {
public val TRUE: Symbol by symbol public val TRUE: Symbol = Symbol("TRUE")//by symbol
public val FALSE: Symbol by symbol public val FALSE: Symbol = Symbol("FALSE")// by symbol
} }
} }

View File

@ -1,5 +1,3 @@
import org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension
plugins { plugins {
id("space.kscience.gradle.mpp") id("space.kscience.gradle.mpp")
} }
@ -18,5 +16,5 @@ readme {
""".trimIndent() """.trimIndent()
} }
rootProject.the<NodeJsRootExtension>().versions.webpack.version = "5.76.2" //rootProject.the<NodeJsRootExtension>().versions.webpack.version = "5.76.2"
rootProject.the<NodeJsRootExtension>().nodeVersion = "20.2.0" //rootProject.the<NodeJsRootExtension>().nodeVersion = "20.8.0"