mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
18b60c4170
This will enable python in the Code node.
5 lines
125 B
TypeScript
5 lines
125 B
TypeScript
import { major } from 'semver';
|
|
import { version } from '../package.json';
|
|
|
|
export const IS_V1_RELEASE = major(version) > 0;
|