protoc 1.1.3 → 21.0.0-rc2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,147 @@
1
+ // Protocol Buffers - Google's data interchange format
2
+ // Copyright 2008 Google Inc. All rights reserved.
3
+ // https://developers.google.com/protocol-buffers/
4
+ //
5
+ // Redistribution and use in source and binary forms, with or without
6
+ // modification, are permitted provided that the following conditions are
7
+ // met:
8
+ //
9
+ // * Redistributions of source code must retain the above copyright
10
+ // notice, this list of conditions and the following disclaimer.
11
+ // * Redistributions in binary form must reproduce the above
12
+ // copyright notice, this list of conditions and the following disclaimer
13
+ // in the documentation and/or other materials provided with the
14
+ // distribution.
15
+ // * Neither the name of Google Inc. nor the names of its
16
+ // contributors may be used to endorse or promote products derived from
17
+ // this software without specific prior written permission.
18
+ //
19
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
+
31
+ syntax = "proto3";
32
+
33
+ package google.protobuf;
34
+
35
+ option csharp_namespace = "Google.Protobuf.WellKnownTypes";
36
+ option cc_enable_arenas = true;
37
+ option go_package = "google.golang.org/protobuf/types/known/timestamppb";
38
+ option java_package = "com.google.protobuf";
39
+ option java_outer_classname = "TimestampProto";
40
+ option java_multiple_files = true;
41
+ option objc_class_prefix = "GPB";
42
+
43
+ // A Timestamp represents a point in time independent of any time zone or local
44
+ // calendar, encoded as a count of seconds and fractions of seconds at
45
+ // nanosecond resolution. The count is relative to an epoch at UTC midnight on
46
+ // January 1, 1970, in the proleptic Gregorian calendar which extends the
47
+ // Gregorian calendar backwards to year one.
48
+ //
49
+ // All minutes are 60 seconds long. Leap seconds are "smeared" so that no leap
50
+ // second table is needed for interpretation, using a [24-hour linear
51
+ // smear](https://developers.google.com/time/smear).
52
+ //
53
+ // The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By
54
+ // restricting to that range, we ensure that we can convert to and from [RFC
55
+ // 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.
56
+ //
57
+ // # Examples
58
+ //
59
+ // Example 1: Compute Timestamp from POSIX `time()`.
60
+ //
61
+ // Timestamp timestamp;
62
+ // timestamp.set_seconds(time(NULL));
63
+ // timestamp.set_nanos(0);
64
+ //
65
+ // Example 2: Compute Timestamp from POSIX `gettimeofday()`.
66
+ //
67
+ // struct timeval tv;
68
+ // gettimeofday(&tv, NULL);
69
+ //
70
+ // Timestamp timestamp;
71
+ // timestamp.set_seconds(tv.tv_sec);
72
+ // timestamp.set_nanos(tv.tv_usec * 1000);
73
+ //
74
+ // Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.
75
+ //
76
+ // FILETIME ft;
77
+ // GetSystemTimeAsFileTime(&ft);
78
+ // UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;
79
+ //
80
+ // // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z
81
+ // // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.
82
+ // Timestamp timestamp;
83
+ // timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));
84
+ // timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));
85
+ //
86
+ // Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.
87
+ //
88
+ // long millis = System.currentTimeMillis();
89
+ //
90
+ // Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)
91
+ // .setNanos((int) ((millis % 1000) * 1000000)).build();
92
+ //
93
+ //
94
+ // Example 5: Compute Timestamp from Java `Instant.now()`.
95
+ //
96
+ // Instant now = Instant.now();
97
+ //
98
+ // Timestamp timestamp =
99
+ // Timestamp.newBuilder().setSeconds(now.getEpochSecond())
100
+ // .setNanos(now.getNano()).build();
101
+ //
102
+ //
103
+ // Example 6: Compute Timestamp from current time in Python.
104
+ //
105
+ // timestamp = Timestamp()
106
+ // timestamp.GetCurrentTime()
107
+ //
108
+ // # JSON Mapping
109
+ //
110
+ // In JSON format, the Timestamp type is encoded as a string in the
111
+ // [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the
112
+ // format is "{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z"
113
+ // where {year} is always expressed using four digits while {month}, {day},
114
+ // {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional
115
+ // seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),
116
+ // are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone
117
+ // is required. A proto3 JSON serializer should always use UTC (as indicated by
118
+ // "Z") when printing the Timestamp type and a proto3 JSON parser should be
119
+ // able to accept both UTC and other timezones (as indicated by an offset).
120
+ //
121
+ // For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past
122
+ // 01:30 UTC on January 15, 2017.
123
+ //
124
+ // In JavaScript, one can convert a Date object to this format using the
125
+ // standard
126
+ // [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)
127
+ // method. In Python, a standard `datetime.datetime` object can be converted
128
+ // to this format using
129
+ // [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with
130
+ // the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
131
+ // the Joda Time's [`ISODateTimeFormat.dateTime()`](
132
+ // http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D
133
+ // ) to obtain a formatter capable of generating timestamps in this format.
134
+ //
135
+ //
136
+ message Timestamp {
137
+ // Represents seconds of UTC time since Unix epoch
138
+ // 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
139
+ // 9999-12-31T23:59:59Z inclusive.
140
+ int64 seconds = 1;
141
+
142
+ // Non-negative fractions of a second at nanosecond resolution. Negative
143
+ // second values with fractions must still have non-negative nanos values
144
+ // that count forward in time. Must be from 0 to 999,999,999
145
+ // inclusive.
146
+ int32 nanos = 2;
147
+ }
@@ -0,0 +1,187 @@
1
+ // Protocol Buffers - Google's data interchange format
2
+ // Copyright 2008 Google Inc. All rights reserved.
3
+ // https://developers.google.com/protocol-buffers/
4
+ //
5
+ // Redistribution and use in source and binary forms, with or without
6
+ // modification, are permitted provided that the following conditions are
7
+ // met:
8
+ //
9
+ // * Redistributions of source code must retain the above copyright
10
+ // notice, this list of conditions and the following disclaimer.
11
+ // * Redistributions in binary form must reproduce the above
12
+ // copyright notice, this list of conditions and the following disclaimer
13
+ // in the documentation and/or other materials provided with the
14
+ // distribution.
15
+ // * Neither the name of Google Inc. nor the names of its
16
+ // contributors may be used to endorse or promote products derived from
17
+ // this software without specific prior written permission.
18
+ //
19
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
+
31
+ syntax = "proto3";
32
+
33
+ package google.protobuf;
34
+
35
+ import "google/protobuf/any.proto";
36
+ import "google/protobuf/source_context.proto";
37
+
38
+ option csharp_namespace = "Google.Protobuf.WellKnownTypes";
39
+ option cc_enable_arenas = true;
40
+ option java_package = "com.google.protobuf";
41
+ option java_outer_classname = "TypeProto";
42
+ option java_multiple_files = true;
43
+ option objc_class_prefix = "GPB";
44
+ option go_package = "google.golang.org/protobuf/types/known/typepb";
45
+
46
+ // A protocol buffer message type.
47
+ message Type {
48
+ // The fully qualified message name.
49
+ string name = 1;
50
+ // The list of fields.
51
+ repeated Field fields = 2;
52
+ // The list of types appearing in `oneof` definitions in this type.
53
+ repeated string oneofs = 3;
54
+ // The protocol buffer options.
55
+ repeated Option options = 4;
56
+ // The source context.
57
+ SourceContext source_context = 5;
58
+ // The source syntax.
59
+ Syntax syntax = 6;
60
+ }
61
+
62
+ // A single field of a message type.
63
+ message Field {
64
+ // Basic field types.
65
+ enum Kind {
66
+ // Field type unknown.
67
+ TYPE_UNKNOWN = 0;
68
+ // Field type double.
69
+ TYPE_DOUBLE = 1;
70
+ // Field type float.
71
+ TYPE_FLOAT = 2;
72
+ // Field type int64.
73
+ TYPE_INT64 = 3;
74
+ // Field type uint64.
75
+ TYPE_UINT64 = 4;
76
+ // Field type int32.
77
+ TYPE_INT32 = 5;
78
+ // Field type fixed64.
79
+ TYPE_FIXED64 = 6;
80
+ // Field type fixed32.
81
+ TYPE_FIXED32 = 7;
82
+ // Field type bool.
83
+ TYPE_BOOL = 8;
84
+ // Field type string.
85
+ TYPE_STRING = 9;
86
+ // Field type group. Proto2 syntax only, and deprecated.
87
+ TYPE_GROUP = 10;
88
+ // Field type message.
89
+ TYPE_MESSAGE = 11;
90
+ // Field type bytes.
91
+ TYPE_BYTES = 12;
92
+ // Field type uint32.
93
+ TYPE_UINT32 = 13;
94
+ // Field type enum.
95
+ TYPE_ENUM = 14;
96
+ // Field type sfixed32.
97
+ TYPE_SFIXED32 = 15;
98
+ // Field type sfixed64.
99
+ TYPE_SFIXED64 = 16;
100
+ // Field type sint32.
101
+ TYPE_SINT32 = 17;
102
+ // Field type sint64.
103
+ TYPE_SINT64 = 18;
104
+ }
105
+
106
+ // Whether a field is optional, required, or repeated.
107
+ enum Cardinality {
108
+ // For fields with unknown cardinality.
109
+ CARDINALITY_UNKNOWN = 0;
110
+ // For optional fields.
111
+ CARDINALITY_OPTIONAL = 1;
112
+ // For required fields. Proto2 syntax only.
113
+ CARDINALITY_REQUIRED = 2;
114
+ // For repeated fields.
115
+ CARDINALITY_REPEATED = 3;
116
+ }
117
+
118
+ // The field type.
119
+ Kind kind = 1;
120
+ // The field cardinality.
121
+ Cardinality cardinality = 2;
122
+ // The field number.
123
+ int32 number = 3;
124
+ // The field name.
125
+ string name = 4;
126
+ // The field type URL, without the scheme, for message or enumeration
127
+ // types. Example: `"type.googleapis.com/google.protobuf.Timestamp"`.
128
+ string type_url = 6;
129
+ // The index of the field type in `Type.oneofs`, for message or enumeration
130
+ // types. The first type has index 1; zero means the type is not in the list.
131
+ int32 oneof_index = 7;
132
+ // Whether to use alternative packed wire representation.
133
+ bool packed = 8;
134
+ // The protocol buffer options.
135
+ repeated Option options = 9;
136
+ // The field JSON name.
137
+ string json_name = 10;
138
+ // The string value of the default value of this field. Proto2 syntax only.
139
+ string default_value = 11;
140
+ }
141
+
142
+ // Enum type definition.
143
+ message Enum {
144
+ // Enum type name.
145
+ string name = 1;
146
+ // Enum value definitions.
147
+ repeated EnumValue enumvalue = 2;
148
+ // Protocol buffer options.
149
+ repeated Option options = 3;
150
+ // The source context.
151
+ SourceContext source_context = 4;
152
+ // The source syntax.
153
+ Syntax syntax = 5;
154
+ }
155
+
156
+ // Enum value definition.
157
+ message EnumValue {
158
+ // Enum value name.
159
+ string name = 1;
160
+ // Enum value number.
161
+ int32 number = 2;
162
+ // Protocol buffer options.
163
+ repeated Option options = 3;
164
+ }
165
+
166
+ // A protocol buffer option, which can be attached to a message, field,
167
+ // enumeration, etc.
168
+ message Option {
169
+ // The option's name. For protobuf built-in options (options defined in
170
+ // descriptor.proto), this is the short name. For example, `"map_entry"`.
171
+ // For custom options, it should be the fully-qualified name. For example,
172
+ // `"google.api.http"`.
173
+ string name = 1;
174
+ // The option's value packed in an Any message. If the value is a primitive,
175
+ // the corresponding wrapper type defined in google/protobuf/wrappers.proto
176
+ // should be used. If the value is an enum, it should be stored as an int32
177
+ // value using the google.protobuf.Int32Value type.
178
+ Any value = 2;
179
+ }
180
+
181
+ // The syntax in which a protocol buffer element is defined.
182
+ enum Syntax {
183
+ // Syntax `proto2`.
184
+ SYNTAX_PROTO2 = 0;
185
+ // Syntax `proto3`.
186
+ SYNTAX_PROTO3 = 1;
187
+ }
@@ -0,0 +1,123 @@
1
+ // Protocol Buffers - Google's data interchange format
2
+ // Copyright 2008 Google Inc. All rights reserved.
3
+ // https://developers.google.com/protocol-buffers/
4
+ //
5
+ // Redistribution and use in source and binary forms, with or without
6
+ // modification, are permitted provided that the following conditions are
7
+ // met:
8
+ //
9
+ // * Redistributions of source code must retain the above copyright
10
+ // notice, this list of conditions and the following disclaimer.
11
+ // * Redistributions in binary form must reproduce the above
12
+ // copyright notice, this list of conditions and the following disclaimer
13
+ // in the documentation and/or other materials provided with the
14
+ // distribution.
15
+ // * Neither the name of Google Inc. nor the names of its
16
+ // contributors may be used to endorse or promote products derived from
17
+ // this software without specific prior written permission.
18
+ //
19
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
+
31
+ // Wrappers for primitive (non-message) types. These types are useful
32
+ // for embedding primitives in the `google.protobuf.Any` type and for places
33
+ // where we need to distinguish between the absence of a primitive
34
+ // typed field and its default value.
35
+ //
36
+ // These wrappers have no meaningful use within repeated fields as they lack
37
+ // the ability to detect presence on individual elements.
38
+ // These wrappers have no meaningful use within a map or a oneof since
39
+ // individual entries of a map or fields of a oneof can already detect presence.
40
+
41
+ syntax = "proto3";
42
+
43
+ package google.protobuf;
44
+
45
+ option csharp_namespace = "Google.Protobuf.WellKnownTypes";
46
+ option cc_enable_arenas = true;
47
+ option go_package = "google.golang.org/protobuf/types/known/wrapperspb";
48
+ option java_package = "com.google.protobuf";
49
+ option java_outer_classname = "WrappersProto";
50
+ option java_multiple_files = true;
51
+ option objc_class_prefix = "GPB";
52
+
53
+ // Wrapper message for `double`.
54
+ //
55
+ // The JSON representation for `DoubleValue` is JSON number.
56
+ message DoubleValue {
57
+ // The double value.
58
+ double value = 1;
59
+ }
60
+
61
+ // Wrapper message for `float`.
62
+ //
63
+ // The JSON representation for `FloatValue` is JSON number.
64
+ message FloatValue {
65
+ // The float value.
66
+ float value = 1;
67
+ }
68
+
69
+ // Wrapper message for `int64`.
70
+ //
71
+ // The JSON representation for `Int64Value` is JSON string.
72
+ message Int64Value {
73
+ // The int64 value.
74
+ int64 value = 1;
75
+ }
76
+
77
+ // Wrapper message for `uint64`.
78
+ //
79
+ // The JSON representation for `UInt64Value` is JSON string.
80
+ message UInt64Value {
81
+ // The uint64 value.
82
+ uint64 value = 1;
83
+ }
84
+
85
+ // Wrapper message for `int32`.
86
+ //
87
+ // The JSON representation for `Int32Value` is JSON number.
88
+ message Int32Value {
89
+ // The int32 value.
90
+ int32 value = 1;
91
+ }
92
+
93
+ // Wrapper message for `uint32`.
94
+ //
95
+ // The JSON representation for `UInt32Value` is JSON number.
96
+ message UInt32Value {
97
+ // The uint32 value.
98
+ uint32 value = 1;
99
+ }
100
+
101
+ // Wrapper message for `bool`.
102
+ //
103
+ // The JSON representation for `BoolValue` is JSON `true` and `false`.
104
+ message BoolValue {
105
+ // The bool value.
106
+ bool value = 1;
107
+ }
108
+
109
+ // Wrapper message for `string`.
110
+ //
111
+ // The JSON representation for `StringValue` is JSON string.
112
+ message StringValue {
113
+ // The string value.
114
+ string value = 1;
115
+ }
116
+
117
+ // Wrapper message for `bytes`.
118
+ //
119
+ // The JSON representation for `BytesValue` is JSON string.
120
+ message BytesValue {
121
+ // The bytes value.
122
+ bytes value = 1;
123
+ }
package/package.json CHANGED
@@ -1,28 +1,42 @@
1
1
  {
2
2
  "name": "protoc",
3
- "version": "1.1.3",
4
- "description": "A tool for converting proto buffers (.proto) files into javascript files usable in Closure Compiler with Closure Library.",
5
- "main": "index.js",
3
+ "version": "21.0.0-rc2",
4
+ "upstreamVersion": "v21.0-rc2",
5
+ "description": "Installs the protocol buffer compiler \"protoc\" for you.",
6
+ "bin": {
7
+ "protoc": "protoc.cjs"
8
+ },
9
+ "engines": {
10
+ "node": ">=20.0.0"
11
+ },
6
12
  "scripts": {
7
- "postinstall": "node scripts/postinstall.js",
8
- "test": "node scripts/test.js"
13
+ "build": "npm run build:protoc && npm run build:tsc",
14
+ "build:protoc": "esbuild src/protoc.ts --bundle --platform=node --outfile=protoc.cjs",
15
+ "build:tsc": "tsc --noEmit",
16
+ "test": "tsx --test src/*.test.ts",
17
+ "lint": "biome lint",
18
+ "format": "biome format --write"
9
19
  },
10
- "bin": {
11
- "protoc": "./bin/protoc"
20
+ "type": "commonjs",
21
+ "publishConfig": {
22
+ "access": "public"
12
23
  },
13
- "author": "Jeppe Rune Mortensen <jepperm@gmail.com>",
14
- "license": "MIT",
24
+ "license": "Apache-2.0",
25
+ "author": "Timo Stamm <ts@timostamm.com>",
26
+ "homepage": "https://github.com/timostamm/protobuf-npm",
15
27
  "repository": {
16
28
  "type": "git",
17
- "url": "git+https://github.com/YePpHa/node-protoc.git"
29
+ "url": "https://github.com/timostamm/protobuf-npm",
30
+ "directory": "packages/protoc"
18
31
  },
19
- "dependencies": {
20
- "glob": "^7.2.3",
21
- "mkdirp": "^0.5.6",
22
- "node-fetch": "^3.2.10",
23
- "rimraf": "^3.0.2",
24
- "unzipper": "^0.10.11",
25
- "uuid": "^9.0.0",
26
- "vinyl": "^2.2.1"
32
+ "keywords": [
33
+ "Protocol Buffers",
34
+ "protobuf",
35
+ "protoc",
36
+ "installation"
37
+ ],
38
+ "devDependencies": {
39
+ "tsx": "^4.20.3",
40
+ "fflate": "^0.8.2"
27
41
  }
28
42
  }
package/protoc.cjs ADDED
@@ -0,0 +1,27 @@
1
+ #!/usr/bin/env node
2
+ "use strict";
3
+
4
+ // src/protoc.ts
5
+ var import_node_path = require("node:path");
6
+ var import_node_child_process = require("node:child_process");
7
+ var import_node_fs = require("node:fs");
8
+ var rootDir = __dirname.endsWith("src") ? (0, import_node_path.dirname)(__dirname) : __dirname;
9
+ var assets = JSON.parse(
10
+ (0, import_node_fs.readFileSync)((0, import_node_path.join)(rootDir, "assets.json"), "utf-8")
11
+ );
12
+ var asset = assets.find(
13
+ (asset2) => asset2.arch === process.arch && asset2.platform === process.platform
14
+ );
15
+ if (!asset) {
16
+ throw new Error(
17
+ `No protoc executable available for your platform (${process.platform}) and architecture (${process.arch})`
18
+ );
19
+ }
20
+ var command = (0, import_node_path.join)(rootDir, "bin", asset.executable);
21
+ var p = (0, import_node_child_process.spawnSync)(command, process.argv.slice(2), {
22
+ stdio: "inherit"
23
+ });
24
+ if (p.error !== void 0) {
25
+ throw p.error;
26
+ }
27
+ process.exit(p.status ?? 0);
package/bin/protoc DELETED
@@ -1,20 +0,0 @@
1
- #!/usr/bin/env node
2
-
3
- const { protoc } = require("../");
4
-
5
- const args = process.argv.slice(2);
6
-
7
- protoc(args, {}, (err, stdout, stderr) => {
8
- if (err) {
9
- console.error(err);
10
- process.exit(1);
11
- }
12
-
13
- if (stdout) {
14
- console.info(stdout);
15
- }
16
-
17
- if (stderr) {
18
- console.error(stderr);
19
- }
20
- })