@awesomeness-js/utils 1.2.11 → 1.2.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/build.js +1 -0
- package/src/utils/clean.js +28 -0
- package/src/utils/generateFile.js +3 -1
- package/src/utils/generateImportStatements.js +22 -4
- package/test/buildSpotCheck/deeperNonRoot/src/hello.js +1 -0
- package/test/buildSpotCheck/deeperNonRoot/test/nested/justATest.js +13 -0
- package/test/buildSpotCheck/nested/sites/abetterbibleapp.com/api/app.js +18 -0
- package/test/buildSpotCheck/nested/sites/abetterbibleapp.com/api/functions/user/bibleVersion.js +1 -0
- package/test/buildSpotCheck/nonRoot/src/hello.js +1 -0
- package/test/buildSpotCheck/nonRoot/test/justATest.js +13 -0
- package/tests/build.test.js +104 -0
- package/types/utils/generateFile.d.ts +2 -1
- package/types/utils/generateImportStatements.d.ts +2 -1
package/package.json
CHANGED
package/src/build.js
CHANGED
package/src/utils/clean.js
CHANGED
|
@@ -165,6 +165,18 @@ function cleanArray(arr, schema = {}, {
|
|
|
165
165
|
|
|
166
166
|
} else {
|
|
167
167
|
|
|
168
|
+
|
|
169
|
+
if(schema.requiredIfPresent === true){
|
|
170
|
+
|
|
171
|
+
throw {
|
|
172
|
+
message: 'requiredIfPresent item is null',
|
|
173
|
+
item,
|
|
174
|
+
key
|
|
175
|
+
};
|
|
176
|
+
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
|
|
168
180
|
return; // skip this item if it's not required and is null
|
|
169
181
|
|
|
170
182
|
}
|
|
@@ -410,6 +422,22 @@ function cleanObject(obj, schema, {
|
|
|
410
422
|
}
|
|
411
423
|
|
|
412
424
|
|
|
425
|
+
if(
|
|
426
|
+
schema.properties[key].required === false
|
|
427
|
+
&& schema.properties[key].requiredIfPresent === true
|
|
428
|
+
&& cleanedValue === null
|
|
429
|
+
){
|
|
430
|
+
|
|
431
|
+
throw {
|
|
432
|
+
message: 'value invalid',
|
|
433
|
+
value,
|
|
434
|
+
key,
|
|
435
|
+
requirements: schema.properties[key],
|
|
436
|
+
};
|
|
437
|
+
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
|
|
413
441
|
cleanObj[key] = cleanedValue;
|
|
414
442
|
|
|
415
443
|
});
|
|
@@ -7,6 +7,7 @@ import generateNamedExports from './generateNamedExports.js';
|
|
|
7
7
|
|
|
8
8
|
export default function generateFile({
|
|
9
9
|
src,
|
|
10
|
+
dest,
|
|
10
11
|
exportRoots,
|
|
11
12
|
ignore,
|
|
12
13
|
includeComments,
|
|
@@ -32,7 +33,8 @@ export default function generateFile({
|
|
|
32
33
|
const importStatements = generateImportStatements({
|
|
33
34
|
fileDataList,
|
|
34
35
|
dts,
|
|
35
|
-
src
|
|
36
|
+
src,
|
|
37
|
+
dest
|
|
36
38
|
});
|
|
37
39
|
|
|
38
40
|
const flatExportLines = generateFlatExportLines({
|
|
@@ -1,18 +1,36 @@
|
|
|
1
|
+
import { dirname, relative } from 'path';
|
|
2
|
+
|
|
1
3
|
export default function generateImportStatements({
|
|
2
4
|
fileDataList,
|
|
3
5
|
dts,
|
|
4
|
-
src
|
|
6
|
+
src,
|
|
7
|
+
dest
|
|
5
8
|
}) {
|
|
6
9
|
|
|
7
10
|
let statements = '';
|
|
11
|
+
const destDir = dirname(dest);
|
|
8
12
|
|
|
9
13
|
fileDataList.forEach(({
|
|
10
14
|
importVarName, importPath
|
|
11
15
|
}) => {
|
|
12
16
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
17
|
+
if (dts) {
|
|
18
|
+
|
|
19
|
+
const normalizedDtsPath = `.${importPath.replace(src, '')}`.replace(/\\/g, '/');
|
|
20
|
+
|
|
21
|
+
statements += `import type ${importVarName} from '${normalizedDtsPath}';\n`;
|
|
22
|
+
|
|
23
|
+
return;
|
|
24
|
+
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
const targetPath = `${importPath}.js`;
|
|
28
|
+
const normalizedRelativePath = relative(destDir, targetPath).replace(/\\/g, '/');
|
|
29
|
+
const importSpecifier = normalizedRelativePath.startsWith('.')
|
|
30
|
+
? normalizedRelativePath
|
|
31
|
+
: `./${normalizedRelativePath}`;
|
|
32
|
+
|
|
33
|
+
statements += `import ${importVarName} from '${importSpecifier}';\n`;
|
|
16
34
|
|
|
17
35
|
});
|
|
18
36
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default () => true;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is auto-generated by the build script.
|
|
3
|
+
* It consolidates API functions for use in the application.
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
*/
|
|
6
|
+
import _hello from '../../src/hello.js';
|
|
7
|
+
|
|
8
|
+
export { _hello as hello };
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
export default {
|
|
12
|
+
hello: _hello,
|
|
13
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is auto-generated by the build script.
|
|
3
|
+
* It consolidates API functions for use in the application.
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
*/
|
|
6
|
+
import _user_bibleVersion from './functions/user/bibleVersion.js';
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
export const user = {
|
|
10
|
+
bibleVersion: _user_bibleVersion
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
export default {
|
|
15
|
+
user: {
|
|
16
|
+
bibleVersion: _user_bibleVersion,
|
|
17
|
+
},
|
|
18
|
+
};
|
package/test/buildSpotCheck/nested/sites/abetterbibleapp.com/api/functions/user/bibleVersion.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default () => true;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default () => true;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is auto-generated by the build script.
|
|
3
|
+
* It consolidates API functions for use in the application.
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
*/
|
|
6
|
+
import _hello from '../src/hello.js';
|
|
7
|
+
|
|
8
|
+
export { _hello as hello };
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
export default {
|
|
12
|
+
hello: _hello,
|
|
13
|
+
};
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import { expect, test } from 'vitest';
|
|
2
|
+
import { mkdirSync, readFileSync, rmSync, writeFileSync } from 'fs';
|
|
3
|
+
import { dirname, join } from 'path';
|
|
4
|
+
import utils from '../index.js';
|
|
5
|
+
|
|
6
|
+
function writeJs(filePath, content = 'export default () => true;\n') {
|
|
7
|
+
|
|
8
|
+
mkdirSync(dirname(filePath), {
|
|
9
|
+
recursive: true
|
|
10
|
+
});
|
|
11
|
+
writeFileSync(filePath, content);
|
|
12
|
+
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
test('build generates imports relative to nested destination', async () => {
|
|
16
|
+
|
|
17
|
+
const root = join('test', 'buildSpotCheck', 'nested');
|
|
18
|
+
|
|
19
|
+
rmSync(root, {
|
|
20
|
+
recursive: true,
|
|
21
|
+
force: true
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
const src = join(root, 'sites', 'abetterbibleapp.com', 'api', 'functions');
|
|
25
|
+
const dest = join(root, 'sites', 'abetterbibleapp.com', 'api', 'app.js');
|
|
26
|
+
const functionFile = join(src, 'user', 'bibleVersion.js');
|
|
27
|
+
|
|
28
|
+
writeJs(functionFile);
|
|
29
|
+
|
|
30
|
+
await utils.build({
|
|
31
|
+
src,
|
|
32
|
+
dest,
|
|
33
|
+
dts: false,
|
|
34
|
+
ignore: [
|
|
35
|
+
'*.test.js'
|
|
36
|
+
]
|
|
37
|
+
});
|
|
38
|
+
|
|
39
|
+
const output = readFileSync(dest, 'utf8');
|
|
40
|
+
|
|
41
|
+
expect(output).toContain("import _user_bibleVersion from './functions/user/bibleVersion.js';");
|
|
42
|
+
expect(output).not.toContain("./sites/abetterbibleapp.com/api/functions/user/bibleVersion.js");
|
|
43
|
+
|
|
44
|
+
});
|
|
45
|
+
|
|
46
|
+
test('build generates correct imports for non-root destination', async () => {
|
|
47
|
+
|
|
48
|
+
const root = join('test', 'buildSpotCheck', 'nonRoot');
|
|
49
|
+
|
|
50
|
+
rmSync(root, {
|
|
51
|
+
recursive: true,
|
|
52
|
+
force: true
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
const src = join(root, 'src');
|
|
56
|
+
const dest = join(root, 'test', 'justATest.js');
|
|
57
|
+
const functionFile = join(src, 'hello.js');
|
|
58
|
+
|
|
59
|
+
writeJs(functionFile);
|
|
60
|
+
mkdirSync(dirname(dest), {
|
|
61
|
+
recursive: true
|
|
62
|
+
});
|
|
63
|
+
|
|
64
|
+
await utils.build({
|
|
65
|
+
src,
|
|
66
|
+
dest,
|
|
67
|
+
dts: false
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
const output = readFileSync(dest, 'utf8');
|
|
71
|
+
|
|
72
|
+
expect(output).toContain("import _hello from '../src/hello.js';");
|
|
73
|
+
|
|
74
|
+
});
|
|
75
|
+
|
|
76
|
+
test('build generates correct imports for deeper non-root destination', async () => {
|
|
77
|
+
|
|
78
|
+
const root = join('test', 'buildSpotCheck', 'deeperNonRoot');
|
|
79
|
+
|
|
80
|
+
rmSync(root, {
|
|
81
|
+
recursive: true,
|
|
82
|
+
force: true
|
|
83
|
+
});
|
|
84
|
+
|
|
85
|
+
const src = join(root, 'src');
|
|
86
|
+
const dest = join(root, 'test', 'nested', 'justATest.js');
|
|
87
|
+
const functionFile = join(src, 'hello.js');
|
|
88
|
+
|
|
89
|
+
writeJs(functionFile);
|
|
90
|
+
mkdirSync(dirname(dest), {
|
|
91
|
+
recursive: true
|
|
92
|
+
});
|
|
93
|
+
|
|
94
|
+
await utils.build({
|
|
95
|
+
src,
|
|
96
|
+
dest,
|
|
97
|
+
dts: false
|
|
98
|
+
});
|
|
99
|
+
|
|
100
|
+
const output = readFileSync(dest, 'utf8');
|
|
101
|
+
|
|
102
|
+
expect(output).toContain("import _hello from '../../src/hello.js';");
|
|
103
|
+
|
|
104
|
+
});
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
export default function generateFile({ src, exportRoots, ignore, includeComments, dts, useTabs }: {
|
|
1
|
+
export default function generateFile({ src, dest, exportRoots, ignore, includeComments, dts, useTabs }: {
|
|
2
2
|
src: any;
|
|
3
|
+
dest: any;
|
|
3
4
|
exportRoots: any;
|
|
4
5
|
ignore: any;
|
|
5
6
|
includeComments: any;
|