Skip to content

Commit

Permalink
deps(moon): Update to v1.25.
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed May 28, 2024
1 parent a63626c commit 6136704
Show file tree
Hide file tree
Showing 5 changed files with 876 additions and 868 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,20 @@
"devDependencies": {
"@babel/cli": "^7.24.5",
"@babel/core": "^7.24.5",
"@moonrepo/cli": "^1.24.6",
"@moonrepo/dev": "^3.0.0",
"@moonrepo/cli": "^1.25.0",
"@moonrepo/dev": "^3.0.1",
"@swc/cli": "^0.3.12",
"@types/micromatch": "^4.0.7",
"@types/node": "^20.12.12",
"@types/react": "^18.3.2",
"@types/semver": "^7.5.8",
"@vanilla-extract/rollup-plugin": "^1.3.5",
"babel-preset-moon": "^3.0.1",
"babel-preset-moon": "^3.0.2",
"bootstrap": "^5.3.3",
"chokidar": "^3.6.0",
"electron-to-chromium": "^1.4.777",
"eslint": "^8.57.0",
"eslint-config-moon": "^3.1.0",
"eslint-config-moon": "^3.1.1",
"lerna": "^8.1.3",
"prettier": "^3.2.5",
"prettier-config-moon": "^1.1.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/packemon/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ export const EXCLUDE_RUST = [
'__fixtures__',
'__mocks__',
'__tests__',
'\\.(config|test|spec)\\.[a-z]+$',
'\\.(test|spec)\\.[a-z]+$',
String.raw`\.(config|test|spec)\.[a-z]+$`,
String.raw`\.(test|spec)\.[a-z]+$`,
];

// https://reactnative.dev/docs/javascript-environment
Expand Down
2 changes: 1 addition & 1 deletion packages/packemon/tests/examples/externals.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ describe('Rollup externals', () => {
});

describe('Rollup externals (regex)', () => {
testExampleOutput('externals.ts', 'babel', { externals: ['@packemon/\\*'] });
testExampleOutput('externals.ts', 'babel', { externals: [String.raw`@packemon/\*`] });
});
4 changes: 2 additions & 2 deletions scenarios/jest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"test": "jest ."
},
"devDependencies": {
"babel-preset-moon": "^3.0.1",
"babel-preset-moon": "^3.0.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-preset-moon": "^3.0.0"
"jest-preset-moon": "^3.0.1"
}
}
Loading

0 comments on commit 6136704

Please sign in to comment.