Skip to content

Commit 35288a0

Browse files
committed
Add --publicDir and --projectDir argument to only-include-used-icons and copy-dsfr-to-public scripts, add logging
1 parent ab6bc76 commit 35288a0

File tree

13 files changed

+476
-340
lines changed

13 files changed

+476
-340
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
with:
116116
registry-url: https://registry.npmjs.org/
117117
- uses: bahmutov/npm-install@v1
118-
- run: yarn build --npm
118+
- run: yarn build --prePublish
119119
- run: npx -y -p [email protected] enable_short_npm_import_path
120120
env:
121121
DRY_RUN: "0"

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"format:check": "yarn _format --list-different",
2323
"storybook": "yarn build && yarn only-include-used-icons && start-storybook -p 6006",
2424
"build-storybook": "yarn build && yarn only-include-used-icons && build-storybook",
25-
"only-include-used-icons": "node dist/bin/only-include-used-icons.js"
25+
"only-include-used-icons": "node dist/bin/only-include-used-icons.js --publicDir ./dist"
2626
},
2727
"bin": {
2828
"copy-dsfr-to-public": "dist/bin/copy-dsfr-to-public.js",
@@ -60,7 +60,8 @@
6060
],
6161
"homepage": "https://github.com/codegouvfr/react-dsfr",
6262
"dependencies": {
63-
"tsafe": "^1.6.3"
63+
"tsafe": "^1.6.3",
64+
"yargs-parser": "^21.1.1"
6465
},
6566
"devDependencies": {
6667
"@babel/core": "^7.20.2",
@@ -98,7 +99,6 @@
9899
"lint-staged": "^11.0.0",
99100
"memoizee": "^0.4.15",
100101
"next": "13.5.1",
101-
"oppa": "^0.4.0",
102102
"parse-numeric-range": "^1.3.0",
103103
"powerhooks": "^0.22.0",
104104
"prettier": "^2.3.0",

scripts/build/build.ts

+11-8
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,13 @@ import {
99
pathOfIconsJson
1010
} from "../../src/bin/only-include-used-icons";
1111
import * as child_process from "child_process";
12-
import { oppa } from "oppa";
1312
import { patchCssForMui } from "./patchCssForMui";
13+
import yargsParser from "yargs-parser";
1414

1515
(async () => {
16-
const { args } = oppa()
17-
.add({
18-
"name": "npm",
19-
"type": "boolean"
20-
})
21-
.parse();
16+
const argv = yargsParser(process.argv.slice(2));
17+
18+
const isPrePublish = argv["prePublish"] === true;
2219

2320
const projectRootDirPath = getProjectRoot();
2421

@@ -122,7 +119,12 @@ import { patchCssForMui } from "./patchCssForMui";
122119
}
123120

124121
//NOTE: From here it's only for local linking, required for storybook and running integration apps.
125-
if (!args.npm) {
122+
123+
local_testing: {
124+
if (isPrePublish) {
125+
break local_testing;
126+
}
127+
126128
fs.writeFileSync(
127129
pathJoin(distDirPath, "package.json"),
128130
Buffer.from(
@@ -149,6 +151,7 @@ import { patchCssForMui } from "./patchCssForMui";
149151
);
150152

151153
fs.cpSync(dsfrDirPath, pathJoin(distDirPath, "dsfr"), { "recursive": true });
154+
fs.rmSync(dsfrDirPath, { "recursive": true });
152155
fs.cpSync(pathJoin(projectRootDirPath, "src"), pathJoin(distDirPath, "src"), {
153156
"recursive": true
154157
});

src/bin/copy-dsfr-to-public.ts

+38-90
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
#!/usr/bin/env node
2-
/* eslint-disable @typescript-eslint/no-unused-vars */
2+
3+
/**
4+
* This script is ran with `npx copy-dsfr-to-public`
5+
* It takes two optional arguments:
6+
* - `--projectDir <path>` to specify the project directory. Default to the current working directory.
7+
* This can be used in monorepos to specify the react project directory.
8+
* - `--publicDir <path>` to specify the public directory.
9+
* In Vite projects we will read the vite.config.ts (or .js) file to find the public directory.
10+
* In other projects we will assume it's <project root>/public.
11+
* This path is expressed relative to the project directory.
12+
*/
313

414
import {
515
join as pathJoin,
@@ -9,101 +19,55 @@ import {
919
} from "path";
1020
import * as fs from "fs";
1121
import { getProjectRoot } from "./tools/getProjectRoot";
12-
import { assert } from "tsafe/assert";
13-
import type { Equals } from "tsafe";
22+
import yargsParser from "yargs-parser";
23+
import { getAbsoluteAndInOsFormatPath } from "./tools/getAbsoluteAndInOsFormatPath";
24+
import { readPublicDirPath } from "./readPublicDirPath";
1425

1526
(async () => {
16-
const projectDirPath = process.cwd();
27+
const argv = yargsParser(process.argv.slice(2));
1728

18-
const viteConfigFilePath = (() => {
19-
for (const ext of [".js", ".ts"]) {
20-
const candidateFilePath = pathJoin(projectDirPath, `vite.config${ext}`);
29+
const projectDirPath: string = (() => {
30+
read_from_argv: {
31+
const arg = argv["projectDir"];
2132

22-
if (!fs.existsSync(candidateFilePath)) {
23-
continue;
33+
if (arg === undefined) {
34+
break read_from_argv;
2435
}
2536

26-
return candidateFilePath;
37+
return getAbsoluteAndInOsFormatPath({ "pathIsh": arg, "cwd": process.cwd() });
2738
}
2839

29-
return undefined;
40+
return process.cwd();
3041
})();
3142

3243
const publicDirPath = await (async () => {
33-
command_line_argument: {
34-
const arg = process.argv[2];
44+
read_from_argv: {
45+
const arg = argv["publicDir"];
3546

3647
if (arg === undefined) {
37-
break command_line_argument;
48+
break read_from_argv;
3849
}
3950

40-
return arg;
41-
}
51+
const publicDirPath = getAbsoluteAndInOsFormatPath({
52+
"pathIsh": arg,
53+
"cwd": projectDirPath
54+
});
4255

43-
read_from_vite_config: {
44-
if (viteConfigFilePath === undefined) {
45-
break read_from_vite_config;
56+
if (!fs.existsSync(publicDirPath)) {
57+
fs.mkdirSync(publicDirPath, { "recursive": true });
4658
}
4759

48-
const viteConfig = fs.readFileSync(viteConfigFilePath).toString("utf8");
49-
50-
if (!viteConfig.includes("publicDir")) {
51-
return pathJoin(projectDirPath, "public");
52-
}
53-
54-
const [, afterPublicDir] = viteConfig.split(/\s["']?publicDir["']?\s*:/);
55-
56-
for (let indexEnd = 0; indexEnd < afterPublicDir.length; indexEnd++) {
57-
const {
58-
default: path,
59-
basename,
60-
dirname,
61-
delimiter,
62-
extname,
63-
format,
64-
isAbsolute,
65-
join,
66-
normalize,
67-
parse,
68-
posix,
69-
relative,
70-
resolve,
71-
sep,
72-
toNamespacedPath,
73-
win32,
74-
...rest
75-
} = await import("path");
76-
assert<Equals<keyof typeof rest, never>>();
77-
78-
const part = afterPublicDir
79-
.substring(0, indexEnd)
80-
.replace(/__dirname/g, `"${projectDirPath}"`);
81-
82-
let candidate: string;
83-
84-
try {
85-
candidate = eval(part);
86-
} catch {
87-
continue;
88-
}
89-
90-
if (typeof candidate !== "string") {
91-
continue;
92-
}
93-
94-
return candidate;
95-
}
96-
97-
console.error(
98-
`Can't parse the vite configuration please open an issue about it ${getRepoIssueUrl()}`
99-
);
100-
101-
process.exit(-1);
60+
return publicDirPath;
10261
}
10362

104-
return pathJoin(projectDirPath, "public");
63+
return await readPublicDirPath({ projectDirPath });
10564
})();
10665

66+
if (!fs.existsSync(publicDirPath)) {
67+
console.error(`Can't locate your public directory, use the --public option to specify it.`);
68+
process.exit(-1);
69+
}
70+
10771
edit_gitignore: {
10872
const gitignoreFilePath = pathJoin(projectDirPath, ".gitignore");
10973

@@ -128,22 +92,6 @@ import type { Equals } from "tsafe";
12892
);
12993
}
13094

131-
if (!fs.existsSync(publicDirPath)) {
132-
if (viteConfigFilePath === undefined) {
133-
console.error(
134-
[
135-
"There is no public/ directory in the current working directory, we don't know your framework",
136-
"you are not calling this script at the right location or we don't know your React framework",
137-
`please submit an issue about it here ${getRepoIssueUrl()}`
138-
].join(" ")
139-
);
140-
141-
process.exit(-1);
142-
}
143-
144-
fs.mkdirSync(publicDirPath, { "recursive": true });
145-
}
146-
14795
const dsfrDirPath = pathJoin(publicDirPath, "dsfr");
14896

14997
if (fs.existsSync(dsfrDirPath)) {

0 commit comments

Comments
 (0)