Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[88] Add version script to build tools #119

Open
wants to merge 13 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
fix: change imports
jordanharris-6 committed Jul 5, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 3d49247d95863ea4205de470375565777002d10a
1 change: 0 additions & 1 deletion src/commands/version.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
const dirsExist = require('../utils/dirs-exist');
const { terminal } = require('terminal-kit');
const fs = require('fs');
const path = require('path');
const {
incrementPackageJsonVersion,
2 changes: 1 addition & 1 deletion src/utils/get-version-project-paths.js
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You don't need this, see previous command about removing it and using prior art/code from build command.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const fs = require('fs');

const path = require('path');
/**
* Check if a directory exists.
* @param {string} directory - The directory path to check.