Skip to content

Commit bdeb5c9

Browse files
author
Daniel Del Core
committed
remove redundant changeset
1 parent 1027724 commit bdeb5c9

File tree

7 files changed

+5
-26
lines changed

7 files changed

+5
-26
lines changed

.changeset/nice-eels-kick.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/sour-plants-exist.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

packages/cli/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export default async function main(
3535
}
3636

3737
const pluginManagerConfig: Partial<PluginManagerOptions> = {
38-
pluginsPath: path.join(__dirname, '..', '.tmp', 'node_modules'),
38+
pluginsPath: path.join(__dirname, '..', 'node_modules'),
3939
};
4040

4141
// If a registry is provided in the CLI flags, use it for the pluginManagers configuration.

packages/fetcher/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
"license": "MIT",
88
"repository": "https://github.com/hypermod-io/hypermod-community/tree/main/packages/fetcher",
99
"dependencies": {
10-
"@antfu/install-pkg": "^0.1.1",
1110
"@hypermod/types": "*",
1211
"chalk": "^4.1.0",
1312
"fs-extra": "^9.1.0",

packages/initializer/src/index.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ import fs from 'fs-extra';
22
import path from 'path';
33
import semver from 'semver';
44
import * as recast from 'recast';
5+
import { version as cliVersion } from '@hypermod/cli/package.json';
6+
import { version as utilVersion } from '@hypermod/utils/package.json';
57

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

@@ -20,11 +22,11 @@ export function getPackageJson(packageName: string, version = '0.0.0') {
2022
validate: 'hypermod validate .',
2123
},
2224
dependencies: {
23-
'@hypermod/utils': `^0.3.0`,
25+
'@hypermod/utils': `^${utilVersion}`,
2426
jscodeshift: '^0.13.1',
2527
},
2628
devDependencies: {
27-
'@hypermod/cli': 'latest',
29+
'@hypermod/cli': `^${cliVersion}`,
2830
'@types/jest': '^26.0.15',
2931
'@types/node': '^16.11.0',
3032
jest: '^26.6.0',

tsconfig.community.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"compilerOptions": {
3-
"composite": true,
43
"strict": true,
54
"skipLibCheck": true,
65
"moduleResolution": "node",

0 commit comments

Comments
 (0)