Skip to content

Commit

Permalink
[Gradle, JS] Make inputFileProperty optional
Browse files Browse the repository at this point in the history
  • Loading branch information
ilgonmic committed Apr 14, 2020
1 parent 4ecedf2 commit fbac2f5
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright 2010-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
* that can be found in the license/LICENSE.txt file.
* Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/

package org.jetbrains.kotlin.gradle.targets.js.nodejs
Expand Down Expand Up @@ -32,6 +32,7 @@ open class NodeJsExec : AbstractExecTask<NodeJsExec>(NodeJsExec::class.java), Re
@Input
var sourceMapStackTraces = true

@Optional
@InputFile
val inputFileProperty: RegularFileProperty = project.newFileProperty()

Expand Down

0 comments on commit fbac2f5

Please sign in to comment.