@granite-js/pulumi-aws 0.1.6 → 0.1.8
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.
- package/CHANGELOG.md +4 -0
- package/dist/index.cjs +39 -27
- package/dist/index.js +29 -17
- package/dist/prebuilt-shared/bundle.android.hbc.gz +0 -0
- package/dist/prebuilt-shared/bundle.ios.hbc.gz +0 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -102,7 +102,7 @@ var require_fd_slicer = __commonJS({
|
|
|
102
102
|
"../../.yarn/cache/yauzl-npm-3.2.0-22e6762265-7b40b3dc46.zip/node_modules/yauzl/fd-slicer.js"(exports2) {
|
|
103
103
|
"use strict";
|
|
104
104
|
init_cjs_shims();
|
|
105
|
-
var
|
|
105
|
+
var fs4 = require("fs");
|
|
106
106
|
var util = require("util");
|
|
107
107
|
var stream = require("stream");
|
|
108
108
|
var Readable = stream.Readable;
|
|
@@ -127,7 +127,7 @@ var require_fd_slicer = __commonJS({
|
|
|
127
127
|
FdSlicer.prototype.read = function(buffer, offset, length, position, callback) {
|
|
128
128
|
var self = this;
|
|
129
129
|
self.pend.go(function(cb) {
|
|
130
|
-
|
|
130
|
+
fs4.read(self.fd, buffer, offset, length, position, function(err, bytesRead, buffer2) {
|
|
131
131
|
cb();
|
|
132
132
|
callback(err, bytesRead, buffer2);
|
|
133
133
|
});
|
|
@@ -136,7 +136,7 @@ var require_fd_slicer = __commonJS({
|
|
|
136
136
|
FdSlicer.prototype.write = function(buffer, offset, length, position, callback) {
|
|
137
137
|
var self = this;
|
|
138
138
|
self.pend.go(function(cb) {
|
|
139
|
-
|
|
139
|
+
fs4.write(self.fd, buffer, offset, length, position, function(err, written, buffer2) {
|
|
140
140
|
cb();
|
|
141
141
|
callback(err, written, buffer2);
|
|
142
142
|
});
|
|
@@ -157,7 +157,7 @@ var require_fd_slicer = __commonJS({
|
|
|
157
157
|
if (self.refCount > 0) return;
|
|
158
158
|
if (self.refCount < 0) throw new Error("invalid unref");
|
|
159
159
|
if (self.autoClose) {
|
|
160
|
-
|
|
160
|
+
fs4.close(self.fd, onCloseDone);
|
|
161
161
|
}
|
|
162
162
|
function onCloseDone(err) {
|
|
163
163
|
if (err) {
|
|
@@ -194,7 +194,7 @@ var require_fd_slicer = __commonJS({
|
|
|
194
194
|
self.context.pend.go(function(cb) {
|
|
195
195
|
if (self.destroyed) return cb();
|
|
196
196
|
var buffer = Buffer.allocUnsafe(toRead);
|
|
197
|
-
|
|
197
|
+
fs4.read(self.context.fd, buffer, 0, toRead, self.pos, function(err, bytesRead) {
|
|
198
198
|
if (err) {
|
|
199
199
|
self.destroy(err);
|
|
200
200
|
} else if (bytesRead === 0) {
|
|
@@ -241,7 +241,7 @@ var require_fd_slicer = __commonJS({
|
|
|
241
241
|
}
|
|
242
242
|
self.context.pend.go(function(cb) {
|
|
243
243
|
if (self.destroyed) return cb();
|
|
244
|
-
|
|
244
|
+
fs4.write(self.context.fd, buffer, 0, buffer.length, self.pos, function(err2, bytes) {
|
|
245
245
|
if (err2) {
|
|
246
246
|
self.destroy();
|
|
247
247
|
cb();
|
|
@@ -683,7 +683,7 @@ var require_yauzl = __commonJS({
|
|
|
683
683
|
"../../.yarn/cache/yauzl-npm-3.2.0-22e6762265-7b40b3dc46.zip/node_modules/yauzl/index.js"(exports2) {
|
|
684
684
|
"use strict";
|
|
685
685
|
init_cjs_shims();
|
|
686
|
-
var
|
|
686
|
+
var fs4 = require("fs");
|
|
687
687
|
var zlib = require("zlib");
|
|
688
688
|
var fd_slicer = require_fd_slicer();
|
|
689
689
|
var crc32 = require_buffer_crc32();
|
|
@@ -704,7 +704,7 @@ var require_yauzl = __commonJS({
|
|
|
704
704
|
exports2.Entry = Entry;
|
|
705
705
|
exports2.LocalFileHeader = LocalFileHeader;
|
|
706
706
|
exports2.RandomAccessReader = RandomAccessReader;
|
|
707
|
-
function open(
|
|
707
|
+
function open(path4, options2, callback) {
|
|
708
708
|
if (typeof options2 === "function") {
|
|
709
709
|
callback = options2;
|
|
710
710
|
options2 = null;
|
|
@@ -716,10 +716,10 @@ var require_yauzl = __commonJS({
|
|
|
716
716
|
if (options2.validateEntrySizes == null) options2.validateEntrySizes = true;
|
|
717
717
|
if (options2.strictFileNames == null) options2.strictFileNames = false;
|
|
718
718
|
if (callback == null) callback = defaultCallback;
|
|
719
|
-
|
|
719
|
+
fs4.open(path4, "r", function(err, fd) {
|
|
720
720
|
if (err) return callback(err);
|
|
721
721
|
fromFd(fd, options2, function(err2, zipfile) {
|
|
722
|
-
if (err2)
|
|
722
|
+
if (err2) fs4.close(fd, defaultCallback);
|
|
723
723
|
callback(err2, zipfile);
|
|
724
724
|
});
|
|
725
725
|
});
|
|
@@ -736,7 +736,7 @@ var require_yauzl = __commonJS({
|
|
|
736
736
|
if (options2.validateEntrySizes == null) options2.validateEntrySizes = true;
|
|
737
737
|
if (options2.strictFileNames == null) options2.strictFileNames = false;
|
|
738
738
|
if (callback == null) callback = defaultCallback;
|
|
739
|
-
|
|
739
|
+
fs4.fstat(fd, function(err, stats) {
|
|
740
740
|
if (err) return callback(err);
|
|
741
741
|
var reader = fd_slicer.createFromFd(fd, { autoClose: true });
|
|
742
742
|
fromRandomAccessReader(reader, stats.size, options2, callback);
|
|
@@ -1431,14 +1431,16 @@ init_cjs_shims();
|
|
|
1431
1431
|
|
|
1432
1432
|
// src/react-native-cdn.ts
|
|
1433
1433
|
init_cjs_shims();
|
|
1434
|
-
var
|
|
1435
|
-
var
|
|
1434
|
+
var import_fs3 = __toESM(require("fs"), 1);
|
|
1435
|
+
var import_path3 = __toESM(require("path"), 1);
|
|
1436
1436
|
|
|
1437
1437
|
// ../../packages/utils/dist/index.js
|
|
1438
1438
|
init_cjs_shims();
|
|
1439
1439
|
var import_fs = __toESM(require("fs"), 1);
|
|
1440
1440
|
var import_path = __toESM(require("path"), 1);
|
|
1441
1441
|
var import_yauzl = __toESM(require_yauzl(), 1);
|
|
1442
|
+
var import_fs2 = __toESM(require("fs"), 1);
|
|
1443
|
+
var import_path2 = __toESM(require("path"), 1);
|
|
1442
1444
|
function getPackageRoot() {
|
|
1443
1445
|
let cwd = process.cwd();
|
|
1444
1446
|
const root = import_path.default.parse(cwd).root;
|
|
@@ -1450,6 +1452,16 @@ function getPackageRoot() {
|
|
|
1450
1452
|
}
|
|
1451
1453
|
return cwd;
|
|
1452
1454
|
}
|
|
1455
|
+
function getLocalTempDirectoryPath(rootDir) {
|
|
1456
|
+
return import_path2.default.resolve(rootDir, ".granite");
|
|
1457
|
+
}
|
|
1458
|
+
function prepareLocalDirectory(rootDir) {
|
|
1459
|
+
const localDir = getLocalTempDirectoryPath(rootDir);
|
|
1460
|
+
if (!import_fs2.default.existsSync(localDir)) {
|
|
1461
|
+
import_fs2.default.mkdirSync(localDir, { recursive: true });
|
|
1462
|
+
}
|
|
1463
|
+
return localDir;
|
|
1464
|
+
}
|
|
1453
1465
|
|
|
1454
1466
|
// src/react-native-cdn.ts
|
|
1455
1467
|
var aws = __toESM(require("@pulumi/aws"), 1);
|
|
@@ -1563,12 +1575,12 @@ function toDeployedAtString(date) {
|
|
|
1563
1575
|
}
|
|
1564
1576
|
|
|
1565
1577
|
// src/react-native-cdn.ts
|
|
1566
|
-
var createLambdaCode = (
|
|
1578
|
+
var createLambdaCode = (path4, {
|
|
1567
1579
|
bucketName,
|
|
1568
1580
|
region
|
|
1569
1581
|
}) => {
|
|
1570
|
-
const code =
|
|
1571
|
-
const { code: transformedCode } = (0, import_oxc_transform.transform)(
|
|
1582
|
+
const code = import_fs3.default.readFileSync(path4, "utf8");
|
|
1583
|
+
const { code: transformedCode } = (0, import_oxc_transform.transform)(path4, code, {
|
|
1572
1584
|
define: {
|
|
1573
1585
|
_BUCKET_NAME: JSON.stringify(bucketName),
|
|
1574
1586
|
_BUCKET_REGION: JSON.stringify(region)
|
|
@@ -1629,21 +1641,21 @@ var ReactNativeBundleCDN = class extends pulumi.ComponentResource {
|
|
|
1629
1641
|
);
|
|
1630
1642
|
const deploymentId = v7_default();
|
|
1631
1643
|
const deployedAt = getTimestampByUUIDv7(deploymentId);
|
|
1632
|
-
const bundlePath =
|
|
1644
|
+
const bundlePath = import_path3.default.join(__dirname, "prebuilt-shared");
|
|
1633
1645
|
const packageRoot = getPackageRoot();
|
|
1634
|
-
const granitePath =
|
|
1635
|
-
const prebuiltSharedPath =
|
|
1636
|
-
|
|
1637
|
-
const files =
|
|
1646
|
+
const granitePath = prepareLocalDirectory(packageRoot);
|
|
1647
|
+
const prebuiltSharedPath = import_path3.default.join(granitePath, "prebuilt-shared");
|
|
1648
|
+
import_fs3.default.mkdirSync(prebuiltSharedPath, { recursive: true });
|
|
1649
|
+
const files = import_fs3.default.readdirSync(bundlePath);
|
|
1638
1650
|
for (const file of files) {
|
|
1639
|
-
const sourcePath =
|
|
1640
|
-
const destPath =
|
|
1641
|
-
|
|
1651
|
+
const sourcePath = import_path3.default.join(bundlePath, file);
|
|
1652
|
+
const destPath = import_path3.default.join(prebuiltSharedPath, file);
|
|
1653
|
+
import_fs3.default.copyFileSync(sourcePath, destPath);
|
|
1642
1654
|
}
|
|
1643
1655
|
const bundleIos = new aws.s3.BucketObjectv2("bundle.ios.hbc.gz", {
|
|
1644
1656
|
bucket: bucket.id,
|
|
1645
1657
|
key: `bundles/shared/${deploymentId}/bundle.ios.hbc.gz`,
|
|
1646
|
-
source: new pulumi.asset.FileAsset(
|
|
1658
|
+
source: new pulumi.asset.FileAsset(import_path3.default.join(prebuiltSharedPath, "bundle.ios.hbc.gz")),
|
|
1647
1659
|
contentType: "application/gzip",
|
|
1648
1660
|
cacheControl: "s-maxage=31536000, max-age=0",
|
|
1649
1661
|
contentEncoding: "gzip",
|
|
@@ -1655,7 +1667,7 @@ var ReactNativeBundleCDN = class extends pulumi.ComponentResource {
|
|
|
1655
1667
|
const bundleAndroid = new aws.s3.BucketObjectv2("bundle.android.hbc.gz", {
|
|
1656
1668
|
bucket: bucket.id,
|
|
1657
1669
|
key: `bundles/shared/${deploymentId}/bundle.android.hbc.gz`,
|
|
1658
|
-
source: new pulumi.asset.FileAsset(
|
|
1670
|
+
source: new pulumi.asset.FileAsset(import_path3.default.join(prebuiltSharedPath, "bundle.android.hbc.gz")),
|
|
1659
1671
|
contentType: "application/gzip",
|
|
1660
1672
|
cacheControl: "s-maxage=31536000, max-age=0",
|
|
1661
1673
|
contentEncoding: "gzip",
|
|
@@ -1980,7 +1992,7 @@ var ReactNativeBundleCDN = class extends pulumi.ComponentResource {
|
|
|
1980
1992
|
}
|
|
1981
1993
|
);
|
|
1982
1994
|
pulumi.all([bundleIos.id, bundleAndroid.id, deploymentState.id, deployments.id]).apply(() => {
|
|
1983
|
-
|
|
1995
|
+
import_fs3.default.rmSync(granitePath, { recursive: true, force: true });
|
|
1984
1996
|
return null;
|
|
1985
1997
|
});
|
|
1986
1998
|
this.cloudfrontDistributionId = cloudfrontDistribution.id;
|
package/dist/index.js
CHANGED
|
@@ -108,7 +108,7 @@ var require_fd_slicer = __commonJS({
|
|
|
108
108
|
"../../.yarn/cache/yauzl-npm-3.2.0-22e6762265-7b40b3dc46.zip/node_modules/yauzl/fd-slicer.js"(exports) {
|
|
109
109
|
"use strict";
|
|
110
110
|
init_esm_shims();
|
|
111
|
-
var
|
|
111
|
+
var fs4 = __require("fs");
|
|
112
112
|
var util = __require("util");
|
|
113
113
|
var stream = __require("stream");
|
|
114
114
|
var Readable = stream.Readable;
|
|
@@ -133,7 +133,7 @@ var require_fd_slicer = __commonJS({
|
|
|
133
133
|
FdSlicer.prototype.read = function(buffer, offset, length, position, callback) {
|
|
134
134
|
var self = this;
|
|
135
135
|
self.pend.go(function(cb) {
|
|
136
|
-
|
|
136
|
+
fs4.read(self.fd, buffer, offset, length, position, function(err, bytesRead, buffer2) {
|
|
137
137
|
cb();
|
|
138
138
|
callback(err, bytesRead, buffer2);
|
|
139
139
|
});
|
|
@@ -142,7 +142,7 @@ var require_fd_slicer = __commonJS({
|
|
|
142
142
|
FdSlicer.prototype.write = function(buffer, offset, length, position, callback) {
|
|
143
143
|
var self = this;
|
|
144
144
|
self.pend.go(function(cb) {
|
|
145
|
-
|
|
145
|
+
fs4.write(self.fd, buffer, offset, length, position, function(err, written, buffer2) {
|
|
146
146
|
cb();
|
|
147
147
|
callback(err, written, buffer2);
|
|
148
148
|
});
|
|
@@ -163,7 +163,7 @@ var require_fd_slicer = __commonJS({
|
|
|
163
163
|
if (self.refCount > 0) return;
|
|
164
164
|
if (self.refCount < 0) throw new Error("invalid unref");
|
|
165
165
|
if (self.autoClose) {
|
|
166
|
-
|
|
166
|
+
fs4.close(self.fd, onCloseDone);
|
|
167
167
|
}
|
|
168
168
|
function onCloseDone(err) {
|
|
169
169
|
if (err) {
|
|
@@ -200,7 +200,7 @@ var require_fd_slicer = __commonJS({
|
|
|
200
200
|
self.context.pend.go(function(cb) {
|
|
201
201
|
if (self.destroyed) return cb();
|
|
202
202
|
var buffer = Buffer.allocUnsafe(toRead);
|
|
203
|
-
|
|
203
|
+
fs4.read(self.context.fd, buffer, 0, toRead, self.pos, function(err, bytesRead) {
|
|
204
204
|
if (err) {
|
|
205
205
|
self.destroy(err);
|
|
206
206
|
} else if (bytesRead === 0) {
|
|
@@ -247,7 +247,7 @@ var require_fd_slicer = __commonJS({
|
|
|
247
247
|
}
|
|
248
248
|
self.context.pend.go(function(cb) {
|
|
249
249
|
if (self.destroyed) return cb();
|
|
250
|
-
|
|
250
|
+
fs4.write(self.context.fd, buffer, 0, buffer.length, self.pos, function(err2, bytes) {
|
|
251
251
|
if (err2) {
|
|
252
252
|
self.destroy();
|
|
253
253
|
cb();
|
|
@@ -689,7 +689,7 @@ var require_yauzl = __commonJS({
|
|
|
689
689
|
"../../.yarn/cache/yauzl-npm-3.2.0-22e6762265-7b40b3dc46.zip/node_modules/yauzl/index.js"(exports) {
|
|
690
690
|
"use strict";
|
|
691
691
|
init_esm_shims();
|
|
692
|
-
var
|
|
692
|
+
var fs4 = __require("fs");
|
|
693
693
|
var zlib = __require("zlib");
|
|
694
694
|
var fd_slicer = require_fd_slicer();
|
|
695
695
|
var crc32 = require_buffer_crc32();
|
|
@@ -722,10 +722,10 @@ var require_yauzl = __commonJS({
|
|
|
722
722
|
if (options2.validateEntrySizes == null) options2.validateEntrySizes = true;
|
|
723
723
|
if (options2.strictFileNames == null) options2.strictFileNames = false;
|
|
724
724
|
if (callback == null) callback = defaultCallback;
|
|
725
|
-
|
|
725
|
+
fs4.open(path4, "r", function(err, fd) {
|
|
726
726
|
if (err) return callback(err);
|
|
727
727
|
fromFd(fd, options2, function(err2, zipfile) {
|
|
728
|
-
if (err2)
|
|
728
|
+
if (err2) fs4.close(fd, defaultCallback);
|
|
729
729
|
callback(err2, zipfile);
|
|
730
730
|
});
|
|
731
731
|
});
|
|
@@ -742,7 +742,7 @@ var require_yauzl = __commonJS({
|
|
|
742
742
|
if (options2.validateEntrySizes == null) options2.validateEntrySizes = true;
|
|
743
743
|
if (options2.strictFileNames == null) options2.strictFileNames = false;
|
|
744
744
|
if (callback == null) callback = defaultCallback;
|
|
745
|
-
|
|
745
|
+
fs4.fstat(fd, function(err, stats) {
|
|
746
746
|
if (err) return callback(err);
|
|
747
747
|
var reader = fd_slicer.createFromFd(fd, { autoClose: true });
|
|
748
748
|
fromRandomAccessReader(reader, stats.size, options2, callback);
|
|
@@ -1432,7 +1432,7 @@ init_esm_shims();
|
|
|
1432
1432
|
|
|
1433
1433
|
// src/react-native-cdn.ts
|
|
1434
1434
|
init_esm_shims();
|
|
1435
|
-
import
|
|
1435
|
+
import fs3 from "fs";
|
|
1436
1436
|
import path3 from "path";
|
|
1437
1437
|
|
|
1438
1438
|
// ../../packages/utils/dist/index.js
|
|
@@ -1440,6 +1440,8 @@ init_esm_shims();
|
|
|
1440
1440
|
var import_yauzl = __toESM(require_yauzl(), 1);
|
|
1441
1441
|
import fs from "fs";
|
|
1442
1442
|
import path2 from "path";
|
|
1443
|
+
import fs2 from "fs";
|
|
1444
|
+
import path22 from "path";
|
|
1443
1445
|
function getPackageRoot() {
|
|
1444
1446
|
let cwd = process.cwd();
|
|
1445
1447
|
const root = path2.parse(cwd).root;
|
|
@@ -1451,6 +1453,16 @@ function getPackageRoot() {
|
|
|
1451
1453
|
}
|
|
1452
1454
|
return cwd;
|
|
1453
1455
|
}
|
|
1456
|
+
function getLocalTempDirectoryPath(rootDir) {
|
|
1457
|
+
return path22.resolve(rootDir, ".granite");
|
|
1458
|
+
}
|
|
1459
|
+
function prepareLocalDirectory(rootDir) {
|
|
1460
|
+
const localDir = getLocalTempDirectoryPath(rootDir);
|
|
1461
|
+
if (!fs2.existsSync(localDir)) {
|
|
1462
|
+
fs2.mkdirSync(localDir, { recursive: true });
|
|
1463
|
+
}
|
|
1464
|
+
return localDir;
|
|
1465
|
+
}
|
|
1454
1466
|
|
|
1455
1467
|
// src/react-native-cdn.ts
|
|
1456
1468
|
import * as aws from "@pulumi/aws";
|
|
@@ -1568,7 +1580,7 @@ var createLambdaCode = (path4, {
|
|
|
1568
1580
|
bucketName,
|
|
1569
1581
|
region
|
|
1570
1582
|
}) => {
|
|
1571
|
-
const code =
|
|
1583
|
+
const code = fs3.readFileSync(path4, "utf8");
|
|
1572
1584
|
const { code: transformedCode } = transform(path4, code, {
|
|
1573
1585
|
define: {
|
|
1574
1586
|
_BUCKET_NAME: JSON.stringify(bucketName),
|
|
@@ -1632,14 +1644,14 @@ var ReactNativeBundleCDN = class extends pulumi.ComponentResource {
|
|
|
1632
1644
|
const deployedAt = getTimestampByUUIDv7(deploymentId);
|
|
1633
1645
|
const bundlePath = path3.join(__dirname, "prebuilt-shared");
|
|
1634
1646
|
const packageRoot = getPackageRoot();
|
|
1635
|
-
const granitePath =
|
|
1647
|
+
const granitePath = prepareLocalDirectory(packageRoot);
|
|
1636
1648
|
const prebuiltSharedPath = path3.join(granitePath, "prebuilt-shared");
|
|
1637
|
-
|
|
1638
|
-
const files =
|
|
1649
|
+
fs3.mkdirSync(prebuiltSharedPath, { recursive: true });
|
|
1650
|
+
const files = fs3.readdirSync(bundlePath);
|
|
1639
1651
|
for (const file of files) {
|
|
1640
1652
|
const sourcePath = path3.join(bundlePath, file);
|
|
1641
1653
|
const destPath = path3.join(prebuiltSharedPath, file);
|
|
1642
|
-
|
|
1654
|
+
fs3.copyFileSync(sourcePath, destPath);
|
|
1643
1655
|
}
|
|
1644
1656
|
const bundleIos = new aws.s3.BucketObjectv2("bundle.ios.hbc.gz", {
|
|
1645
1657
|
bucket: bucket.id,
|
|
@@ -1981,7 +1993,7 @@ var ReactNativeBundleCDN = class extends pulumi.ComponentResource {
|
|
|
1981
1993
|
}
|
|
1982
1994
|
);
|
|
1983
1995
|
pulumi.all([bundleIos.id, bundleAndroid.id, deploymentState.id, deployments.id]).apply(() => {
|
|
1984
|
-
|
|
1996
|
+
fs3.rmSync(granitePath, { recursive: true, force: true });
|
|
1985
1997
|
return null;
|
|
1986
1998
|
});
|
|
1987
1999
|
this.cloudfrontDistributionId = cloudfrontDistribution.id;
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@granite-js/pulumi-aws",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.8",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"module": "./dist/index.js",
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
"scripts": {
|
|
29
29
|
"prepack": "yarn build",
|
|
30
30
|
"typecheck": "tsc --noEmit",
|
|
31
|
-
"test": "vitest --coverage",
|
|
31
|
+
"test": "vitest --run --coverage",
|
|
32
32
|
"build": "tsup"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@aws-sdk/client-cloudfront": "^3.812.0",
|
|
36
|
-
"@granite-js/deployment-manager": "0.1.
|
|
37
|
-
"@granite-js/utils": "0.1.
|
|
36
|
+
"@granite-js/deployment-manager": "0.1.8",
|
|
37
|
+
"@granite-js/utils": "0.1.8",
|
|
38
38
|
"@pulumi/aws": "^6.80.0",
|
|
39
39
|
"@pulumi/pulumi": "^3.170.0",
|
|
40
40
|
"@types/aws-lambda": "^8.10.149",
|