Skip to content

Commit

Permalink
build error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
citron03 committed Jun 7, 2024
1 parent 5781542 commit f5b218c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
- run: npm ci
- run: npm test

Expand All @@ -25,7 +25,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm run build
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "colors-helper-tools",
"version": "1.6.1",
"version": "1.6.2",
"description": "help use color style ✨",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/cli.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/usr/bin/env node

import { Command } from 'commander';
import { getRandomColorRgb, getRandomColorHex } from '.';
// import fs from 'fs';
// import path from 'path';
import { getRandomColorHex, getRandomColorRgb } from '..';

// const packageJsonPath = path.join(__dirname, '../package.json');

Expand Down

0 comments on commit f5b218c

Please sign in to comment.