Skip to content

Commit

Permalink
Publish core.proto within the @dataform/core package (#1378)
Browse files Browse the repository at this point in the history
* Publish core.proto within the @dataform/core package

* Bump version
  • Loading branch information
Ekrekr committed Oct 27, 2023
1 parent 4d76175 commit 1563b32
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions packages/@dataform/core/BUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
load("//tools:ts_library.bzl", "ts_library")
load("//:version.bzl", "DF_VERSION")
load("//packages:index.bzl", "pkg_bundle", "pkg_bundle_dts", "pkg_json", "pkg_npm_tar")
load("//tools/common:copy.bzl", "copy_file")

package(default_visibility = ["//visibility:public"])

Expand Down Expand Up @@ -52,11 +53,18 @@ pkg_bundle_dts(
],
)

copy_file(
name = "core_proto",
src = "//protos:core.proto",
out = "core.proto",
)

pkg_npm_tar(
name = "package",
deps = [
":bundle",
":bundle.d",
":package.json",
":core.proto",
],
)
2 changes: 1 addition & 1 deletion version.bzl
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# NOTE: If you change the format of this line, you must change the bash command
# in /scripts/publish to extract the version string correctly.
DF_VERSION = "2.0.2"
DF_VERSION = "2.0.3"

0 comments on commit 1563b32

Please sign in to comment.