mirror of
https://github.com/apple/pkl.git
synced 2026-01-11 22:30:54 +01:00
move parser out of pkl-core (#1024)
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright © 2024 Apple Inc. and the Pkl project authors. All rights reserved.
|
||||
* Copyright © 2024-2025 Apple Inc. and the Pkl project authors. All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -26,6 +26,7 @@ dependencies {
|
||||
implementation(projects.pklCore)
|
||||
implementation(projects.pklCommonsCli)
|
||||
implementation(projects.pklCommons)
|
||||
implementation(projects.pklParser)
|
||||
implementation(libs.commonMark)
|
||||
implementation(libs.commonMarkTables)
|
||||
implementation(libs.kotlinxHtml)
|
||||
|
||||
@@ -22,9 +22,9 @@ import kotlin.io.path.bufferedWriter
|
||||
import kotlin.io.path.createParentDirectories
|
||||
import kotlin.io.path.outputStream
|
||||
import org.pkl.core.*
|
||||
import org.pkl.core.parser.Lexer
|
||||
import org.pkl.core.util.IoUtils
|
||||
import org.pkl.core.util.json.JsonWriter
|
||||
import org.pkl.parser.Lexer
|
||||
|
||||
// overwrites any existing file
|
||||
internal fun copyResource(resourceName: String, targetDir: Path) {
|
||||
|
||||
Reference in New Issue
Block a user