Skip to content

Commit

Permalink
changesets
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Del Core committed Sep 12, 2023
1 parent bc7414f commit 1027724
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 21 deletions.
6 changes: 6 additions & 0 deletions .changeset/light-pumas-give.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@codeshift/cli': minor
'@hypermod/cli': minor
---

Implements alternate dependency downloader which is available via the --experimental-loader flag
5 changes: 5 additions & 0 deletions .changeset/nice-eels-kick.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@hypermod/fetcher': patch
---

Added blacklist to remote package fetcher to ensure dependencies such as `javascript` aren't downloaded since they will never contain a hypermod.config file.
12 changes: 12 additions & 0 deletions .changeset/sour-plants-exist.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
'@hypermod/initializer': patch
'@codeshift/cli': patch
'@hypermod/validator': patch
'@hypermod/fetcher': patch
'@hypermod/types': patch
'@hypermod/utils': patch
'@hypermod/core': patch
'@hypermod/cli': patch
---

Moves package bundling from Parceljs to TSC
6 changes: 2 additions & 4 deletions packages/initializer/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ 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 @@ -22,11 +20,11 @@ export function getPackageJson(packageName: string, version = '0.0.0') {
validate: 'hypermod validate .',
},
dependencies: {
'@hypermod/utils': `^${utilVersion}`,
'@hypermod/utils': `^0.3.0`,
jscodeshift: '^0.13.1',
},
devDependencies: {
'@hypermod/cli': `^${cliVersion}`,
'@hypermod/cli': 'latest',
'@types/jest': '^26.0.15',
'@types/node': '^16.11.0',
jest: '^26.6.0',
Expand Down
18 changes: 2 additions & 16 deletions tsconfig.community.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,4 @@
{
"compilerOptions": {
"composite": true,
"strict": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"esModuleInterop": true
},
"include": ["community/**/*", "scripts"],
"exclude": [
"node_modules",
"plugin_packages",
"dist",
"__tests__",
"**/*.test*",
"**/*.spec*"
]
"extends": "./tsconfig.json",
"include": ["community/**/*", "scripts"]
}
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3570,7 +3570,7 @@ color-name@~1.1.4:

[email protected]:
version "1.4.0"
resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78"
resolved "https://packages.atlassian.com/api/npm/npm-remote/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78"
integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==

combined-stream@^1.0.8:
Expand Down

0 comments on commit 1027724

Please sign in to comment.