Skip to content

Commit 7c25cf1

Browse files
authored
fix(remix): update lib generator to generate valid names in package.json (#29219)
<!-- Please make sure you have read the submission guidelines before posting an PR --> <!-- https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr --> <!-- Please make sure that your commit message follows our format --> <!-- Example: `fix(nx): must begin with lowercase` --> <!-- If this is a particularly complex change or feature addition, you can request a dedicated Nx release for this pull request branch. Mention someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they will confirm if the PR warrants its own release for testing purposes, and generate it for you if appropriate. --> ## Current Behavior `nx g @nx/remix:lib packages/foo` generates invalid package names in new TS setup. e.g. `@acme/packages/foo`. ## Expected Behavior The name should be valid in `package.json`. ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #
1 parent f89fca9 commit 7c25cf1

File tree

4 files changed

+64
-15
lines changed

4 files changed

+64
-15
lines changed

packages/remix/src/generators/library/lib/add-tsconfig-entry-points.ts

+11-8
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,16 @@ import {
66
} from '@nx/devkit';
77
import { getRootTsConfigPathInTree } from '@nx/js';
88
import type { RemixLibraryOptions } from './normalize-options';
9+
import { resolveImportPath } from '@nx/devkit/src/generators/project-name-and-root-utils';
910

1011
export function addTsconfigEntryPoints(
1112
tree: Tree,
1213
options: RemixLibraryOptions
1314
) {
14-
const { sourceRoot } = readProjectConfiguration(tree, options.projectName);
15+
const { root: projectRoot, sourceRoot } = readProjectConfiguration(
16+
tree,
17+
options.projectName
18+
);
1519
const serverFilePath = joinPathFragments(sourceRoot, 'server.ts');
1620

1721
tree.write(
@@ -20,14 +24,13 @@ export function addTsconfigEntryPoints(
2024
);
2125

2226
const baseTsConfig = getRootTsConfigPathInTree(tree);
27+
// Use same logic as `determineProjectNameAndRootOptions` to get the import path
28+
const importPath = resolveImportPath(tree, options.name, projectRoot);
2329
updateJson(tree, baseTsConfig, (json) => {
24-
if (
25-
json.compilerOptions.paths &&
26-
json.compilerOptions.paths[options.importPath]
27-
) {
28-
json.compilerOptions.paths[
29-
joinPathFragments(options.importPath, 'server')
30-
] = [serverFilePath];
30+
if (json.compilerOptions.paths && json.compilerOptions.paths[importPath]) {
31+
json.compilerOptions.paths[joinPathFragments(importPath, 'server')] = [
32+
serverFilePath,
33+
];
3134
}
3235

3336
return json;

packages/remix/src/generators/library/lib/normalize-options.ts

-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import {
33
determineProjectNameAndRootOptions,
44
ensureProjectName,
55
} from '@nx/devkit/src/generators/project-name-and-root-utils';
6-
import { getImportPath } from '@nx/js/src/utils/get-import-path';
76
import type { NxRemixGeneratorSchema } from '../schema';
87

98
export interface RemixLibraryOptions extends NxRemixGeneratorSchema {
@@ -31,12 +30,9 @@ export async function normalizeOptions(
3130
nxJson.useInferencePlugins !== false;
3231
options.addPlugin ??= addPluginDefault;
3332

34-
const importPath = options.importPath ?? getImportPath(tree, projectRoot);
35-
3633
return {
3734
...options,
3835
unitTestRunner: options.unitTestRunner ?? 'vitest',
39-
importPath,
4036
projectName,
4137
projectRoot,
4238
};

packages/remix/src/generators/library/library.impl.spec.ts

+51-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
import 'nx/src/internal-testing-utils/mock-project-graph';
22

3-
import { readJson, readProjectConfiguration } from '@nx/devkit';
3+
import {
4+
readJson,
5+
readProjectConfiguration,
6+
Tree,
7+
updateJson,
8+
writeJson,
9+
} from '@nx/devkit';
410
import { createTreeWithEmptyWorkspace } from '@nx/devkit/testing';
511
import applicationGenerator from '../application/application.impl';
612
import libraryGenerator from './library.impl';
@@ -129,4 +135,48 @@ describe('Remix Library Generator', () => {
129135
expect(pkgJson.main).toEqual('./dist/index.cjs.js');
130136
expect(pkgJson.typings).toEqual('./dist/index.d.ts');
131137
});
138+
describe('TS solution setup', () => {
139+
let tree: Tree;
140+
141+
beforeEach(() => {
142+
tree = createTreeWithEmptyWorkspace();
143+
updateJson(tree, 'package.json', (json) => {
144+
json.workspaces = ['packages/*', 'apps/*'];
145+
return json;
146+
});
147+
writeJson(tree, 'tsconfig.base.json', {
148+
compilerOptions: {
149+
composite: true,
150+
declaration: true,
151+
},
152+
});
153+
writeJson(tree, 'tsconfig.json', {
154+
extends: './tsconfig.base.json',
155+
files: [],
156+
references: [],
157+
});
158+
});
159+
160+
it('should generate valid package.json', async () => {
161+
await libraryGenerator(tree, {
162+
directory: 'packages/foo',
163+
style: 'css',
164+
addPlugin: true,
165+
});
166+
167+
expect(readJson(tree, 'packages/foo/package.json'))
168+
.toMatchInlineSnapshot(`
169+
{
170+
"main": "./src/index.ts",
171+
"name": "@proj/foo",
172+
"nx": {
173+
"name": "foo",
174+
"projectType": "library",
175+
"sourceRoot": "packages/foo/src",
176+
},
177+
"types": "./src/index.ts",
178+
}
179+
`);
180+
});
181+
});
132182
});

packages/remix/src/generators/library/library.impl.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ export async function remixLibraryGeneratorInternal(
3232
tasks.push(jsInitTask);
3333

3434
const libGenTask = await libraryGenerator(tree, {
35-
name: options.projectName,
35+
directory: options.directory,
36+
name: options.name,
3637
style: options.style,
3738
unitTestRunner: options.unitTestRunner,
3839
tags: options.tags,
3940
importPath: options.importPath,
40-
directory: options.projectRoot,
4141
skipFormat: true,
4242
skipTsConfig: false,
4343
linter: options.linter,

0 commit comments

Comments
 (0)