From 680ca01f5f456f1f4c2b88c38813431645cde9aa Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Sat, 25 Oct 2025 18:38:21 -0600 Subject: [PATCH] Remove package.json and package-lock.json to clean up project dependencies; update README with usage instructions for deduplicating and sorting meta.json. --- README.md | 3 +++ package-lock.json | 6 ------ package.json | 29 ----------------------------- 3 files changed, 3 insertions(+), 35 deletions(-) delete mode 100644 package-lock.json delete mode 100644 package.json diff --git a/README.md b/README.md index e6815e03..81ac50e3 100644 --- a/README.md +++ b/README.md @@ -223,3 +223,6 @@ services: 4. Go to your instance, create a new Compose Service, go to Advanced Section -> Scroll Down -> Import Section -> Paste the Base64 Value -> Click on the Import Button 5. If everything is correct and set, you should see a modal with all the details (Compose File, Environment Variables, Mounts, Domains, etc) 6. Now you can click on the Deploy Button and wait for the deployment to finish, and try to access to the service, if everything is correct you should access to the service and see the template working. + + +use the command `node dedupe-and-sort-meta.js` to deduplicate and sort the meta.json file. \ No newline at end of file diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index 3d166a22..00000000 --- a/package-lock.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "name": "templates", - "lockfileVersion": 3, - "requires": true, - "packages": {} -} diff --git a/package.json b/package.json deleted file mode 100644 index 62468436..00000000 --- a/package.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name": "template-meta-processor", - "version": "1.0.0", - "description": "Production scripts for processing meta.json - remove duplicates and sort alphabetically", - "main": "build-scripts/process-meta.js", - "scripts": { - "process-meta": "node dedupe-and-sort-meta.js", - "validate-meta": "node build-scripts/process-meta.js --no-backup --verbose", - "build": "npm run process-meta", - "prebuild": "echo 'Processing meta.json for production build...'", - "postbuild": "echo 'Meta.json processing completed!'" - }, - "keywords": [ - "meta", - "json", - "dedupe", - "sort", - "build", - "production" - ], - "author": "", - "license": "MIT", - "engines": { - "node": ">=14.0.0" - }, - "devDependencies": { - "nodemon": "^3.0.0" - } -}