1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-08-17 00:50:42 +03:00

ci: Fix oclif manifest generation

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™ 2023-10-25 14:51:10 +02:00
parent 28aabb845a
commit 0643487403
3 changed files with 3 additions and 1 deletions

1
.gitignore vendored
View File

@ -22,3 +22,4 @@ cypress/screenshots/*
cypress/downloads/*
*.swp
CHANGELOG-*.md
packages/cli/oclif.manifest.json

View File

@ -30,7 +30,7 @@
"lint": "eslint . --quiet",
"lintfix": "eslint . --fix",
"postpack": "rm -f oclif.manifest.json",
"prepack": "oclif-dev manifest",
"prepack": "OCLIF_TS_NODE=0 oclif-dev manifest",
"start": "run-script-os",
"start:default": "cd bin && ./n8n",
"start:windows": "cd bin && n8n",

View File

@ -1,3 +1,4 @@
import 'reflect-metadata';
import { Command } from '@oclif/command';
import { ExitError } from '@oclif/errors';
import { Container } from 'typedi';