Skip to content

Commit a7c3aaf

Browse files
author
Daniel Del Core
committed
temp
1 parent 885c4d6 commit a7c3aaf

File tree

6 files changed

+6880
-6556
lines changed

6 files changed

+6880
-6556
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@
3737
"release": "yarn changeset publish"
3838
},
3939
"dependencies": {
40-
"@babel/core": "^7.13.16",
41-
"@babel/parser": "^7.13.16",
42-
"@babel/preset-env": "^7.13.16",
43-
"@babel/preset-typescript": "^7.13.16",
40+
"@babel/core": "^7.23.0",
41+
"@babel/parser": "^7.23.0",
42+
"@babel/preset-env": "^7.23.0",
43+
"@babel/preset-typescript": "^7.23.0",
4444
"@changesets/cli": "^2.6.2",
4545
"@manypkg/cli": "^0.20.0",
4646
"@parcel/packager-ts": "^2.8.3",

packages/cli/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
},
1919
"dependencies": {
2020
"@antfu/install-pkg": "^0.1.1",
21+
"@atlaskit/tokens": "^1.37.1",
2122
"@hypermod/core": "^0.2.3",
2223
"@hypermod/fetcher": "^0.6.0",
2324
"@hypermod/initializer": "^0.5.3",
@@ -32,6 +33,8 @@
3233
"live-plugin-manager": "^0.18.1",
3334
"lodash": "^4.17.21",
3435
"ora": "^5.4.1",
36+
"postcss": "^8.4.35",
37+
"postcss-less": "^6.0.0",
3538
"semver": "^7.3.5",
3639
"ts-node": "^10.9.1"
3740
},

packages/cli/src/main.ts

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,23 @@ import { fetchConfigsForWorkspaces, getPackageJson } from './utils/file-system';
1616
import { getConfigPrompt, getMultiConfigPrompt } from './prompt';
1717

1818
const ExperimentalModuleLoader = () => ({
19-
install: async (packageName: string) =>
19+
install: async (packageName: string) => {
2020
await installPackage(packageName, {
2121
cwd: __dirname,
2222
packageManager: 'npm',
2323
additionalArgs: ['--force'],
24-
}),
24+
});
25+
await installPackage('postcss@^8.4.7', {
26+
cwd: __dirname,
27+
packageManager: 'npm',
28+
additionalArgs: ['--force'],
29+
});
30+
await installPackage('postcss-less@^6.0.0', {
31+
cwd: __dirname,
32+
packageManager: 'npm',
33+
additionalArgs: ['--force'],
34+
});
35+
},
2536
require: (packageName: string) => require(packageName),
2637
getInfo: (packageName: string) => {
2738
const entryPath = require.resolve(packageName);

packages/core/package.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,17 @@
77
"license": "MIT",
88
"repository": "https://github.com/hypermod-io/hypermod-community/tree/main/packages/core",
99
"dependencies": {
10-
"@babel/core": "^7.13.16",
11-
"@babel/parser": "^7.13.16",
10+
"@babel/core": "^7.23.0",
11+
"@babel/parser": "^7.23.0",
1212
"@babel/plugin-proposal-class-properties": "^7.13.0",
1313
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
1414
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
1515
"@babel/plugin-transform-modules-commonjs": "^7.13.8",
1616
"@babel/preset-flow": "^7.13.13",
17-
"@babel/preset-typescript": "^7.13.16",
18-
"@babel/register": "^7.13.16",
17+
"@babel/preset-typescript": "^7.23.0",
18+
"@babel/register": "^7.23.0",
1919
"@types/neo-async": "^2.6.0",
2020
"@types/write-file-atomic": "^4.0.0",
21-
"babel-core": "^7.0.0-bridge.0",
2221
"chalk": "^4.1.0",
2322
"graceful-fs": "^4.2.4",
2423
"jscodeshift": "^0.13.1",

packages/fetcher/package.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,15 @@
77
"license": "MIT",
88
"repository": "https://github.com/hypermod-io/hypermod-community/tree/main/packages/fetcher",
99
"dependencies": {
10-
"@babel/core": "^7.13.16",
11-
"@babel/parser": "^7.13.16",
10+
"@babel/core": "^7.23.0",
11+
"@babel/parser": "^7.23.0",
1212
"@babel/plugin-proposal-class-properties": "^7.13.0",
1313
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
1414
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
1515
"@babel/plugin-transform-modules-commonjs": "^7.13.8",
16-
"@babel/preset-flow": "^7.13.13",
17-
"@babel/preset-typescript": "^7.13.16",
18-
"@babel/register": "^7.13.16",
16+
"@babel/preset-typescript": "^7.23.0",
17+
"@babel/register": "^7.23.0",
1918
"@hypermod/types": "*",
20-
"babel-core": "^7.0.0-bridge.0",
2119
"chalk": "^4.1.0",
2220
"fs-extra": "^9.1.0",
2321
"globby": "^11.1.0",

0 commit comments

Comments
 (0)