Skip to content

Commit

Permalink
Remove unused imports from git subcommands
Browse files Browse the repository at this point in the history
  • Loading branch information
AtkinsSJ committed Jun 3, 2024
1 parent 9835364 commit f991278
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 9 deletions.
2 changes: 0 additions & 2 deletions packages/git/src/subcommands/add.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import git from 'isomorphic-git';
import path from 'path-browserify';
import { ErrorCodes } from '@heyputer/puter-js-common/src/PosixError.js';
import { find_repo_root } from '../git-helpers.js';

export default {
Expand Down
2 changes: 0 additions & 2 deletions packages/git/src/subcommands/commit.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import git from 'isomorphic-git';
import path from 'path-browserify';
import { ErrorCodes } from '@heyputer/puter-js-common/src/PosixError.js';
import { find_repo_root, shorten_hash } from '../git-helpers.js';

export default {
Expand Down
2 changes: 0 additions & 2 deletions packages/git/src/subcommands/help.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import git from 'isomorphic-git';
import { ErrorCodes } from '@heyputer/puter-js-common/src/PosixError.js';
import subcommands from './__exports__.js';
import git_command from '../git-command-definition.js';
import { produce_help_string } from '../help.js';
Expand Down
1 change: 0 additions & 1 deletion packages/git/src/subcommands/status.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
*/
import git from 'isomorphic-git';
import path from 'path-browserify';
import { ErrorCodes } from '@heyputer/puter-js-common/src/PosixError.js';
import { find_repo_root } from '../git-helpers.js';

export default {
Expand Down
2 changes: 0 additions & 2 deletions packages/git/src/subcommands/version.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import git from 'isomorphic-git';
import path from 'path-browserify';
import { ErrorCodes } from '@heyputer/puter-js-common/src/PosixError.js';

const VERSION = '1.0.0';

Expand Down

0 comments on commit f991278

Please sign in to comment.