mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
ci: Fix oclif manifest generation
This commit is contained in:
parent
28aabb845a
commit
0643487403
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -22,3 +22,4 @@ cypress/screenshots/*
|
|||
cypress/downloads/*
|
||||
*.swp
|
||||
CHANGELOG-*.md
|
||||
packages/cli/oclif.manifest.json
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
import 'reflect-metadata';
|
||||
import { Command } from '@oclif/command';
|
||||
import { ExitError } from '@oclif/errors';
|
||||
import { Container } from 'typedi';
|
||||
|
|
Loading…
Reference in a new issue