wirejs-deploy-amplify-basic 0.1.158-llm → 0.1.159-llm

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.
@@ -3,6 +3,6 @@
3
3
  "dependencies": {
4
4
  "jsdom": "^25.0.1",
5
5
  "wirejs-dom": "^1.0.44",
6
- "wirejs-resources": "^0.1.158-llm"
6
+ "wirejs-resources": "^0.1.159-llm"
7
7
  }
8
8
  }
package/build.js CHANGED
@@ -12,12 +12,10 @@ import { randomUUID } from 'crypto';
12
12
  const CWD = process.cwd();
13
13
  const __filename = import.meta.url.replace(/^file:/, '');
14
14
 
15
- const TEMP_ID = randomUUID();
16
15
  const SELF_DIR = path.dirname(__filename);
17
16
  const PROJECT_API_DIR = path.join(CWD, 'api');
18
17
  const PROJECT_DIST_DIR = path.join(CWD, 'dist');
19
18
  const BACKEND_DIR = path.join(CWD, 'amplify');
20
- const LAMBDA_BUILD_DIR = path.join(CWD, `lambda-${TEMP_ID}`);
21
19
  const HOSTING_DIR = path.join(CWD, '.amplify-hosting');
22
20
  const STATIC_DIR = path.join(HOSTING_DIR, 'static');
23
21
  const COMPUTE_DIR = path.join(HOSTING_DIR, 'compute', 'default');
@@ -34,7 +32,6 @@ async function createSkeleton() {
34
32
  await fs.promises.mkdir(HOSTING_DIR, { recursive: true });
35
33
  await fs.promises.mkdir(STATIC_DIR, { recursive: true });
36
34
  await fs.promises.mkdir(COMPUTE_DIR, { recursive: true });
37
- await fs.promises.mkdir(LAMBDA_BUILD_DIR, { recursive: true });
38
35
 
39
36
  // skeleton for backend assets
40
37
  await copy(path.join(SELF_DIR, 'amplify-backend-assets'), BACKEND_DIR);
@@ -59,6 +56,7 @@ async function installDeps() {
59
56
  ...{
60
57
  '@aws-amplify/backend': '^1.14.0',
61
58
  '@aws-amplify/backend-cli': '^1.4.8',
59
+ "@aws-sdk/client-dynamodb": "^3.774.0", // for GSI handler
62
60
  'aws-cdk': '^2.177.0',
63
61
  'aws-cdk-lib': '^2.177.0',
64
62
  'constructs': '^10.4.2',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wirejs-deploy-amplify-basic",
3
- "version": "0.1.158-llm",
3
+ "version": "0.1.159-llm",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -44,7 +44,7 @@
44
44
  "recursive-copy": "^2.0.14",
45
45
  "rimraf": "^6.0.1",
46
46
  "wirejs-dom": "^1.0.44",
47
- "wirejs-resources": "^0.1.158-llm"
47
+ "wirejs-resources": "^0.1.159-llm"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@aws-amplify/backend": "^1.14.0",