From f76ac7ccad919d77a3cb3aa07b23d7087916d0f3 Mon Sep 17 00:00:00 2001 From: SanderElias Date: Tue, 21 Jan 2020 05:16:31 +0100 Subject: [PATCH] fix(line-endings): conver line-endings to `lf` only, to prevent problems running scully in CI closes #192 --- scully/package.json | 2 +- scully/scully.ts | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/scully/package.json b/scully/package.json index 0a70fd6f4..f070dc2a9 100644 --- a/scully/package.json +++ b/scully/package.json @@ -1,6 +1,6 @@ { "name": "@scullyio/scully", - "version": "0.0.56", + "version": "0.0.57", "description": "Scully CLI", "repository": { "type": "GIT", diff --git a/scully/scully.ts b/scully/scully.ts index 61a60e08a..6ffd50842 100644 --- a/scully/scully.ts +++ b/scully/scully.ts @@ -1,4 +1,8 @@ #!/usr/bin/env node + +/** + * The above line is needed to be able to run in npx and CI. + */ import {readFileSync} from 'fs-extra'; import {join} from 'path'; import * as yargs from 'yargs';