From da5e26f37ef190ddca5bc61ec4607e5f410109fe Mon Sep 17 00:00:00 2001 From: Pagan Gazzard Date: Thu, 23 Apr 2020 11:00:06 +0100 Subject: [PATCH] Convert lib/actions/local/index.coffee to typescript Change-type: patch --- lib/actions/local/{index.coffee => index.ts} | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) rename lib/actions/local/{index.coffee => index.ts} (80%) diff --git a/lib/actions/local/index.coffee b/lib/actions/local/index.ts similarity index 80% rename from lib/actions/local/index.coffee rename to lib/actions/local/index.ts index 4da35124..714da8f4 100644 --- a/lib/actions/local/index.coffee +++ b/lib/actions/local/index.ts @@ -1,5 +1,5 @@ -### -Copyright 2017 Balena +/* +Copyright 2017-2020 Balena Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -12,7 +12,7 @@ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -### +*/ -exports.configure = require('./configure').configure -exports.flash = require('./flash').flash +export { configure } from './configure'; +export { flash } from './flash';