forked from QwikDev/qwik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-json.ts
179 lines (171 loc) · 5.51 KB
/
package-json.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
import { type BuildConfig, ensureDir, type PackageJSON } from './util';
import { readFile, writeFile } from './util';
import { join } from 'node:path';
/**
* The published build does not use the package.json found in the root directory. This function
* generates the package.json file for package to be published. Note that some of the properties can
* be pulled from the root package.json.
*/
export async function generatePackageJson(config: BuildConfig) {
const rootPkg = await readPackageJson(join(config.packagesDir, 'qwik'));
const distPkg: PackageJSON = {
name: rootPkg.name,
version: config.distVersion,
description: rootPkg.description,
license: rootPkg.license,
main: './core.mjs',
types: './core.d.ts',
bin: {
qwik: './qwik.cjs',
},
type: 'module',
peerDependencies: {
undici: '^5.14.0',
},
dependencies: rootPkg.dependencies,
exports: {
'.': {
types: './core.d.ts',
import: {
min: './core.min.mjs',
development: './core.mjs',
production: './core.prod.mjs',
default: './core.prod.mjs',
},
require: {
development: './core.cjs',
production: './core.prod.cjs',
default: './core.prod.cjs',
},
},
'./cli': {
require: './cli.cjs',
},
'./jsx-runtime': {
types: './jsx-runtime.d.ts',
import: {
min: './core.min.mjs',
development: './core.mjs',
production: './core.prod.mjs',
default: './core.prod.mjs',
},
require: {
development: './core.cjs',
production: './core.prod.cjs',
default: './core.prod.cjs',
},
},
'./jsx-dev-runtime': {
types: './jsx-runtime.d.ts',
import: {
min: './core.min.mjs',
development: './core.mjs',
production: './core.prod.mjs',
default: './core.mjs',
},
require: {
development: './core.cjs',
production: './core.prod.cjs',
default: './core.cjs',
},
},
'./build': {
import: {
development: './build/index.dev.mjs',
production: './build/index.prod.mjs',
default: './build/index.mjs',
},
require: {
development: './build/index.dev.cjs',
production: './build/index.prod.cjs',
default: './build/index.cjs',
},
},
'./loader': {
types: './loader/index.d.ts',
import: './loader/index.mjs',
require: './loader/index.cjs',
},
'./optimizer.cjs': './optimizer.cjs',
'./optimizer.mjs': './optimizer.mjs',
'./optimizer': {
types: './optimizer.d.ts',
import: './optimizer.mjs',
require: './optimizer.cjs',
},
'./server.cjs': './server.cjs',
'./server.mjs': './server.mjs',
'./server': {
types: './server.d.ts',
import: './server.mjs',
require: './server.cjs',
},
'./testing': {
types: './testing/index.d.ts',
import: './testing/index.mjs',
require: './testing/index.cjs',
},
'./qwikloader.js': './qwikloader.js',
'./qwikloader.debug.js': './qwikloader.debug.js',
'./package.json': './package.json',
},
files: Array.from(new Set(rootPkg.files)).sort((a, b) => {
if (a.toLocaleLowerCase() < b.toLocaleLowerCase()) return -1;
if (a.toLocaleLowerCase() > b.toLocaleLowerCase()) return 1;
return 0;
}),
contributors: rootPkg.contributors,
homepage: rootPkg.homepage,
repository: rootPkg.repository,
bugs: rootPkg.bugs,
keywords: rootPkg.keywords,
engines: rootPkg.engines,
};
await writePackageJson(config.distQwikPkgDir, distPkg);
console.log(config.distQwikPkgDir);
await generateLegacyCjsSubmodule(config, 'core');
await generateLegacyCjsSubmodule(config, 'jsx-runtime');
await generateLegacyCjsSubmodule(config, 'jsx-dev-runtime', 'jsx-runtime');
await generateLegacyCjsSubmodule(config, 'optimizer');
await generateLegacyCjsSubmodule(config, 'server');
console.log(`🐷 generated package.json`);
}
export async function generateLegacyCjsSubmodule(
config: BuildConfig,
pkgName: string,
index = pkgName
) {
// Modern Node.js will resolve the submodule packages using "exports": https://nodejs.org/api/packages.html#subpath-exports
// however, legacy Node.js still needs a directory and its own package.json
// this can be removed once node12 is in the distant past
const pkg: PackageJSON = {
name: `@builder.io/qwik/${pkgName}`,
version: config.distVersion,
main: `../${index}.mjs`,
module: `../${index}.mjs`,
types: `../${index}.d.ts`,
type: 'module',
private: true,
exports: {
'.': {
types: `../${index}.d.ts`,
require: `../${index}.cjs`,
import: `../${index}.mjs`,
},
},
};
const submoduleDistDir = join(config.distQwikPkgDir, pkgName);
ensureDir(submoduleDistDir);
await writePackageJson(submoduleDistDir, pkg);
}
export async function readPackageJson(pkgJsonDir: string) {
const pkgJsonPath = join(pkgJsonDir, 'package.json');
const pkgJson: PackageJSON = JSON.parse(await readFile(pkgJsonPath, 'utf-8'));
return pkgJson;
}
export async function writePackageJson(pkgJsonDir: string, pkgJson: PackageJSON) {
ensureDir(pkgJsonDir);
const pkgJsonPath = join(pkgJsonDir, 'package.json');
const pkgJsonStr = JSON.stringify(pkgJson, null, 2) + '\n';
await writeFile(pkgJsonPath, pkgJsonStr);
}