Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [ 22.x, 24.x ]
node-version: [ 22.x, 24.x, 26.x ]
os: [ windows-latest, ubuntu-latest, macOS-latest ]

# Go
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 24.x
node-version: 26.x
registry-url: https://registry.npmjs.org/

# Publish to npm
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
"@aws-lite/lambda": "^0.1.5",
"@aws-lite/s3": "^0.2.6",
"@aws-lite/ssm": "^0.2.3",
"fs-extra": "~11.3.3",
"mime-types": "~3.0.2",
"zip-dir": "2.0.0",
"zipit": "2.0.0"
Expand Down
5 changes: 2 additions & 3 deletions src/sam/patches/asap.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
let { join } = require('path')
let { mkdirSync, readFileSync, writeFileSync } = require('fs')
let { copySync } = require('fs-extra')
let { mkdirSync, readFileSync, writeFileSync, cpSync } = require('fs')

// If we're using ASAP + fingerprinting, inject it with static.json
module.exports = function asapFingerprint (params, callback) {
Expand All @@ -18,7 +17,7 @@ module.exports = function asapFingerprint (params, callback) {
mkdirSync(shared, { recursive: true })

// Handle ASAP
copySync(src, tmp)
cpSync(src, tmp, { recursive: true })

// Handle static.json
let staticFolder = inv.static.folder
Expand Down