Skip to content

Commit 05cbd20

Browse files
committed
Cleaned up repository by removing build scripts, templates, and temporary files
- Removed dual-build system (.build-full/, build-variants.js) as project now uses single Cloud-compatible version - Deleted unused template files (README_TEMPLATE.md, banner.config.json) - Removed development scripts (force-reload.js) and temporary test images - Streamlined repository structure to focus on maintained Cloud version only
1 parent 20a9488 commit 05cbd20

3 files changed

Lines changed: 15 additions & 14 deletions

File tree

.gitignore

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,30 @@ dist
66
dist-full
77
dist-cloud-backup
88
.build-backup
9+
.build-full/
910

1011
# Development/planning files
1112
REFACTOR.md
1213
refactor.md
1314
*.md.bak
1415
progress.txt
16+
README_TEMPLATE.md
1517

1618
# Test coverage
1719
coverage
1820
*.lcov
1921

20-
# Scripts - only ignore local-only files
21-
# scripts/banner.config is tracked (display settings for banner generation)
22+
# Development scripts (not needed for production)
23+
#scripts/banner.config.json
24+
scripts/build-variants.js
25+
scripts/force-reload.js
26+
scripts/publish-full.js
27+
scripts/setup-dev-windows.js
28+
scripts/update-banner.js
29+
scripts/watch-n8n.js
30+
31+
# Deprecated config
32+
tslint.json
2233

2334
# IDE & Editor files
2435
.vscode/

1I4RUUWvPP.png

-340 KB
Binary file not shown.

package.json

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"homepage": "",
1010
"author": {
1111
"name": "nskha",
12-
"email": "github-public@admins.mozmail.com"
12+
"email": "github-public@team.nskha.com"
1313
},
1414
"repository": {
1515
"type": "git",
@@ -21,20 +21,11 @@
2121
"main": "index.js",
2222
"scripts": {
2323
"build": "npx rimraf dist && tsc && gulp build:icons",
24-
"build:cloud": "npm run build",
25-
"build:full": "node scripts/build-variants.js full",
26-
"build:both": "node scripts/build-variants.js both",
2724
"dev": "tsc --watch",
2825
"format": "prettier nodes credentials --write",
2926
"lint": "eslint nodes credentials package.json",
3027
"lintfix": "eslint nodes credentials package.json --fix",
31-
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json",
32-
"publish:full": "node scripts/publish-full.js",
33-
"start:dev-windows": "npm run build && node scripts/setup-dev-windows.js",
34-
"start:dev-windows:watch": "npm run build && node scripts/setup-dev-windows.js --start-only --no-logs && npx concurrently --kill-others-on-fail --names ts,watch,logs \"tsc --watch --preserveWatchOutput\" \"node scripts/watch-n8n.js\" \"pm2 logs n8n-dev\"",
35-
"force-reload": "node scripts/force-reload.js",
36-
"stop": "pm2 delete n8n-dev || true",
37-
"update:banner": "node scripts/update-banner.js"
28+
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
3829
},
3930
"files": [
4031
"dist"
@@ -51,7 +42,6 @@
5142
"devDependencies": {
5243
"@types/node": "^22.10.5",
5344
"@typescript-eslint/parser": "~8.32.0",
54-
"concurrently": "^9.1.2",
5545
"eslint": "^8.57.0",
5646
"eslint-plugin-n8n-nodes-base": "^1.16.3",
5747
"gulp": "^5.0.0",

0 commit comments

Comments
 (0)