Skip to content

Commit 3b5195a

Browse files
author
Elias Kassell
authored
Publish core.proto within the @dataform/core package (#1378)
* Publish core.proto within the @dataform/core package * Bump version
1 parent 9927780 commit 3b5195a

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

packages/@dataform/core/BUILD

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
load("//tools:ts_library.bzl", "ts_library")
22
load("//:version.bzl", "DF_VERSION")
33
load("//packages:index.bzl", "pkg_bundle", "pkg_bundle_dts", "pkg_json", "pkg_npm_tar")
4+
load("//tools/common:copy.bzl", "copy_file")
45

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

@@ -52,11 +53,18 @@ pkg_bundle_dts(
5253
],
5354
)
5455

56+
copy_file(
57+
name = "core_proto",
58+
src = "//protos:core.proto",
59+
out = "core.proto",
60+
)
61+
5562
pkg_npm_tar(
5663
name = "package",
5764
deps = [
5865
":bundle",
5966
":bundle.d",
6067
":package.json",
68+
":core.proto",
6169
],
6270
)

version.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# NOTE: If you change the format of this line, you must change the bash command
22
# in /scripts/publish to extract the version string correctly.
3-
DF_VERSION = "2.0.2"
3+
DF_VERSION = "2.0.3"

0 commit comments

Comments
 (0)