Skip to content

Commit

Permalink
Include all workspace files in webpack / rollup build configurations (#…
Browse files Browse the repository at this point in the history
…2219)

* Construct the include directories from all workspaces

* Support Windows paths

* Create tough-mugs-dream.md

* Add tests and fixtures

* Fix packages

* Fix changeset
  • Loading branch information
cristiano-belloni committed Dec 1, 2022
1 parent e2cbdc3 commit 4a541a9
Show file tree
Hide file tree
Showing 29 changed files with 399 additions and 13 deletions.
5 changes: 5 additions & 0 deletions .changeset/tough-mugs-dream.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"modular-scripts": patch
---

Fix `modular build` crashing when the selected workspace(s) are not in `packages`.
9 changes: 9 additions & 0 deletions __fixtures__/custom-workspace-root/apps/alpha/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "alpha",
"private": false,
"modular": {
"type": "package"
},
"main": "./src/index.ts",
"version": "1.0.0"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import add from '../index';

test('it should add two numbers', () => {
expect(add(0.1, 0.2)).toEqual(0.30000000000000004);
});
3 changes: 3 additions & 0 deletions __fixtures__/custom-workspace-root/apps/alpha/src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default function add(a: number, b: number): number {
return a + b;
}
8 changes: 8 additions & 0 deletions __fixtures__/custom-workspace-root/apps/app/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"name": "app",
"private": true,
"modular": {
"type": "app"
},
"version": "1.0.0"
}
Binary file not shown.
43 changes: 43 additions & 0 deletions __fixtures__/custom-workspace-root/apps/app/public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site created using create-modular-app"
/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
</html>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions __fixtures__/custom-workspace-root/apps/app/public/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"short_name": "React App",
"name": "Create React App Sample",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "logo192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "logo512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}
3 changes: 3 additions & 0 deletions __fixtures__/custom-workspace-root/apps/app/public/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# https://www.robotstxt.org/robotstxt.html
User-agent: *
Disallow:
38 changes: 38 additions & 0 deletions __fixtures__/custom-workspace-root/apps/app/src/App.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
.App {
text-align: center;
}

.App-logo {
height: 40vmin;
pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
.App-logo {
animation: App-logo-spin infinite 20s linear;
}
}

.App-header {
background-color: #282c34;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
}

.App-link {
color: #61dafb;
}

@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
26 changes: 26 additions & 0 deletions __fixtures__/custom-workspace-root/apps/app/src/App.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import * as React from 'react';
import logo from './logo.svg';
import './App.css';

function App(): JSX.Element {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Edit <code>src/App.tsx</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
</header>
</div>
);
}

export default App;
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import * as React from 'react';
import { render, screen } from '@testing-library/react';
import App from '../App';

test('renders learn react link', () => {
render(<App />);
const linkElement = screen.getByText(/learn react/i);
expect(linkElement).toBeInTheDocument();
});
13 changes: 13 additions & 0 deletions __fixtures__/custom-workspace-root/apps/app/src/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
12 changes: 12 additions & 0 deletions __fixtures__/custom-workspace-root/apps/app/src/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import * as React from 'react';
import * as ReactDOM from 'react-dom';

import App from './App';
import './index.css';

ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root'),
);
7 changes: 7 additions & 0 deletions __fixtures__/custom-workspace-root/apps/app/src/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/// <reference types="modular-scripts/react-app-env" />
3 changes: 3 additions & 0 deletions __fixtures__/custom-workspace-root/apps/app/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "../../tsconfig.json"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// Allows for adding setup configuration to Jest
export {};
5 changes: 5 additions & 0 deletions __fixtures__/custom-workspace-root/modular/setupTests.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// jest-dom adds custom jest matchers for asserting on DOM nodes.
// allows you to do things like:
// expect(element).toHaveTextContent(/react/i)
// learn more: https://github.com/testing-library/jest-dom
import '@testing-library/jest-dom/extend-expect';
59 changes: 59 additions & 0 deletions __fixtures__/custom-workspace-root/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
{
"name": "roots",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"workspaces": [
"packages/**",
"apps/**"
],
"modular": {
"type": "root"
},
"scripts": {
"start": "modular start",
"build": "modular build",
"test": "modular test",
"lint": "eslint . --ext .js,.ts,.tsx",
"prettier": "prettier --write ."
},
"eslintConfig": {
"extends": "modular-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 80,
"proseWrap": "always"
},
"dependencies": {
"@testing-library/dom": "^8.19.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^7.2.1",
"@types/jest": "^29.2.3",
"@types/node": "^18.7.14",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"eslint-config-modular-app": "^3.0.2",
"modular-scripts": "^3.6.0",
"modular-template-app": "^1.1.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": ">=4.2.1 <4.5.0"
}
}
1 change: 1 addition & 0 deletions __fixtures__/custom-workspace-root/packages/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This will be the readme inside /packages
4 changes: 4 additions & 0 deletions __fixtures__/custom-workspace-root/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"extends": "modular-scripts/tsconfig.json",
"include": ["modular", "packages/**/src", "apps/**/src"]
}
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ function createConfig({
// Process application JS with esbuild.
{
test: /\.(js|mjs|jsx)$/,
include: paths.modularSrc,
include: paths.includeDirectories,
loader: require.resolve('esbuild-loader'),
options: {
implementation: require('esbuild'),
Expand All @@ -178,7 +178,7 @@ function createConfig({
},
{
test: /\.ts$/,
include: paths.modularSrc,
include: paths.includeDirectories,
loader: require.resolve('esbuild-loader'),
options: {
implementation: require('esbuild'),
Expand All @@ -188,7 +188,7 @@ function createConfig({
},
{
test: /\.tsx$/,
include: paths.modularSrc,
include: paths.includeDirectories,
loader: require.resolve('esbuild-loader'),
options: {
implementation: require('esbuild'),
Expand Down
28 changes: 26 additions & 2 deletions packages/modular-scripts/react-scripts/config/paths.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

const path = require('path');
const fs = require('fs');
const globby = require('globby');
const getPublicUrlOrPath = require('../../react-dev-utils/getPublicUrlOrPath');

if (!process.env.MODULAR_ROOT) {
Expand Down Expand Up @@ -77,6 +78,21 @@ const resolveModule = (resolveFn, filePath) => {
return resolveFn(`${filePath}.js`);
};

// Get the workspaces field from the manifest to calculate the possible workspace directories
const rootManifest = require(resolveModular('package.json'));
const workspaceDefinitions =
(Array.isArray(rootManifest?.workspaces)
? rootManifest?.workspaces
: rootManifest?.workspaces?.packages) || [];

// Calculate all the possible workspace directories. We need to convert paths to posix separator to feed it into globby
// and convert back to native separator after
const workspaceDirectories = globby
.sync(workspaceDefinitions.map(resolveModular).map(toPosix), {
onlyDirectories: true,
})
.map(fromPosix);

// config after eject: we're in ./config/
module.exports = {
appPath: resolveApp('.'),
Expand All @@ -86,8 +102,8 @@ module.exports = {
appIndexJs: resolveModule(resolveApp, 'src/index'),
appPackageJson: resolveApp('package.json'),
appSrc: resolveApp('src'),
modularSrc: [
resolveModular('packages'),
includeDirectories: [
workspaceDirectories,
resolveModular('node_modules/.modular'),
],
appTsConfig: resolveApp('tsconfig.json'),
Expand All @@ -101,3 +117,11 @@ module.exports = {
};

module.exports.moduleFileExtensions = moduleFileExtensions;

function toPosix(pathString) {
return pathString.split(path.sep).join(path.posix.sep);
}

function fromPosix(pathString) {
return pathString.split(path.posix.sep).join(path.sep);
}
Loading

0 comments on commit 4a541a9

Please sign in to comment.