From f86e4e539584bdaa1fd81588ba453ffd62251464 Mon Sep 17 00:00:00 2001 From: ThulinaWickramasinghe Date: Sun, 14 Apr 2024 20:14:45 +0530 Subject: [PATCH] Fix(actions-exec-wrapper): link types in package.json --- packages/actions-exec-wrapper/package.json | 65 +++++++++++----------- 1 file changed, 33 insertions(+), 32 deletions(-) diff --git a/packages/actions-exec-wrapper/package.json b/packages/actions-exec-wrapper/package.json index a808392..8367a5e 100644 --- a/packages/actions-exec-wrapper/package.json +++ b/packages/actions-exec-wrapper/package.json @@ -1,32 +1,33 @@ -{ - "name": "@sliit-foss/actions-exec-wrapper", - "version": "1.1.1", - "description": "A wrapper around the @actions/exec module which promisifies the console output of a command", - "main": "dist/index.js", - "scripts": { - "build": "node ../../scripts/esbuild.config.js", - "build:watch": "bash ../../scripts/esbuild.watch.sh", - "bump-version": "bash ../../scripts/bump-version.sh --name=@sliit-foss/actions-exec-wrapper", - "lint": "bash ../../scripts/lint.sh", - "release": "bash ../../scripts/release.sh", - "test": "bash ../../scripts/test/test.sh" - }, - "dependencies": { - "@actions/exec": "1.1.1" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/sliit-foss/npm-catalogue.git" - }, - "keywords": [ - "@actions/exec", - "actions-exec-wrapper", - "console-output" - ], - "author": "SLIIT FOSS", - "license": "MIT", - "bugs": { - "url": "https://github.com/sliit-foss/npm-catalogue/issues" - }, - "homepage": "https://github.com/sliit-foss/npm-catalogue/blob/main/packages/actions-exec-wrapper/readme.md" -} +{ + "name": "@sliit-foss/actions-exec-wrapper", + "version": "1.1.1", + "description": "A wrapper around the @actions/exec module which promisifies the console output of a command", + "main": "dist/index.js", + "types": "types/index.d.ts", + "scripts": { + "build": "node ../../scripts/esbuild.config.js", + "build:watch": "bash ../../scripts/esbuild.watch.sh", + "bump-version": "bash ../../scripts/bump-version.sh --name=@sliit-foss/actions-exec-wrapper", + "lint": "bash ../../scripts/lint.sh", + "release": "bash ../../scripts/release.sh", + "test": "bash ../../scripts/test/test.sh" + }, + "dependencies": { + "@actions/exec": "1.1.1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/sliit-foss/npm-catalogue.git" + }, + "keywords": [ + "@actions/exec", + "actions-exec-wrapper", + "console-output" + ], + "author": "SLIIT FOSS", + "license": "MIT", + "bugs": { + "url": "https://github.com/sliit-foss/npm-catalogue/issues" + }, + "homepage": "https://github.com/sliit-foss/npm-catalogue/blob/main/packages/actions-exec-wrapper/readme.md" +}