Skip to content

Commit

Permalink
update compile folder from lib->dist
Browse files Browse the repository at this point in the history
  • Loading branch information
shubham-stepsecurity committed Nov 26, 2024
1 parent bdbc421 commit 092d2ab
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ inputs:
default: 'false'
runs:
using: 'node20'
main: 'lib/index.js'
main: 'dist/index.js'
branding:
icon: 'package'
color: 'yellow'
File renamed without changes.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "actions-hugo",
"version": "3.0.0",
"description": "GitHub Actions for Hugo",
"main": "lib/index.js",
"main": "dist/index.js",
"engines": {
"node": ">=20.10.0",
"npm": ">=10.2.3"
Expand All @@ -12,7 +12,7 @@
"lint": "eslint ./{src,__tests__}/**/*.ts",
"lint:fix": "eslint --fix ./{src,__tests__}/**/*.ts",
"test": "jest --coverage --verbose",
"build": "ncc build ./src/index.ts -o lib",
"build": "ncc build ./src/index.ts -o dist",
"tsc": "tsc",
"format": "prettier --write '**/*.ts'",
"format:check": "prettier --check '**/*.ts'",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"module": "commonjs",
"target": "ES2019",
"sourceMap": true,
"outDir": "./lib",
"outDir": "./dist",
"rootDir": "./src",
"removeComments": true,
"strict": true,
Expand Down

0 comments on commit 092d2ab

Please sign in to comment.