Skip to content

Commit a3ad22d

Browse files
committed
Fix typo in components/bin/build from 479a3ce
1 parent 38c4d2d commit a3ad22d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/bin/build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ function processParts(parts) {
193193
function processLines(file, objects) {
194194
if (objects.length === 0) return [];
195195
const base = path.dirname(file).replace(/^\.$/, '');
196-
const dir = (PREFIX ? noramlize(path.join(PREFIX, base)) : base);
196+
const dir = (PREFIX ? normalize(path.join(PREFIX, base)) : base);
197197
const dots = dir.replace(/[^\/]+/g, '..') || '.';
198198
const relative = normalize(path.join(dots, '..', JS, dir, path.basename(file))).replace(/\.ts$/, '.js');
199199
const name = path.parse(file).name;

0 commit comments

Comments
 (0)