Skip to content

Commit

Permalink
Minimum build time version: node 18, due to tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
ajmas committed Apr 16, 2024
1 parent d2ae699 commit 8af3217
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Sync GDrive


This is a library to allow you to synchronise a file or directory in Google Drive with the local file system. Currently this solution provides a one way sync from Google Drive to the local file system.

This code was orginally developped for the maison-notman-house API server, but it was felt that it would have more value as module that could be used by other projects.
Expand Down Expand Up @@ -90,7 +89,7 @@ export GOOGLE_PRIVATE_KEY="xxxxxx"
This project will not work in the browser, due to dependencies on the
file system.

Targeted node.js versions are 16+ .
Targeted node.js versions are 18+ .

## Contributions & Feedback

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@
"version": "1.1.0",
"description": "Module to synchronise a file or directory in Google Drive with the local file system",
"main": "dist/index.js",
"browser": false,
"bin": {
"sync-gdrive": "dist/cli.js"
},
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
},
"scripts": {
"sync-gdrive": "ts-node src/cli.ts",
Expand Down

0 comments on commit 8af3217

Please sign in to comment.