Skip to content

Commit

Permalink
remove redundant changeset
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Del Core committed Sep 12, 2023
1 parent 1027724 commit bdeb5c9
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 26 deletions.
5 changes: 0 additions & 5 deletions .changeset/nice-eels-kick.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/sour-plants-exist.md

This file was deleted.

2 changes: 1 addition & 1 deletion packages/cli/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default async function main(
}

const pluginManagerConfig: Partial<PluginManagerOptions> = {
pluginsPath: path.join(__dirname, '..', '.tmp', 'node_modules'),
pluginsPath: path.join(__dirname, '..', 'node_modules'),
};

// If a registry is provided in the CLI flags, use it for the pluginManagers configuration.
Expand Down
1 change: 0 additions & 1 deletion packages/fetcher/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"license": "MIT",
"repository": "https://github.com/hypermod-io/hypermod-community/tree/main/packages/fetcher",
"dependencies": {
"@antfu/install-pkg": "^0.1.1",
"@hypermod/types": "*",
"chalk": "^4.1.0",
"fs-extra": "^9.1.0",
Expand Down
6 changes: 4 additions & 2 deletions packages/initializer/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import fs from 'fs-extra';
import path from 'path';
import semver from 'semver';
import * as recast from 'recast';
import { version as cliVersion } from '@hypermod/cli/package.json';
import { version as utilVersion } from '@hypermod/utils/package.json';

const TEMPLATE_PATH = path.join(__dirname, '..', 'template');

Expand All @@ -20,11 +22,11 @@ export function getPackageJson(packageName: string, version = '0.0.0') {
validate: 'hypermod validate .',
},
dependencies: {
'@hypermod/utils': `^0.3.0`,
'@hypermod/utils': `^${utilVersion}`,
jscodeshift: '^0.13.1',
},
devDependencies: {
'@hypermod/cli': 'latest',
'@hypermod/cli': `^${cliVersion}`,
'@types/jest': '^26.0.15',
'@types/node': '^16.11.0',
jest: '^26.6.0',
Expand Down
4 changes: 0 additions & 4 deletions tsconfig.community.json

This file was deleted.

1 change: 0 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"compilerOptions": {
"composite": true,
"strict": true,
"skipLibCheck": true,
"moduleResolution": "node",
Expand Down

0 comments on commit bdeb5c9

Please sign in to comment.