UNPKG

4.79 kBJavaScriptView Raw
1"use strict";
2/**
3 * @license
4 * Copyright (c) 2018 The Polymer Project Authors. All rights reserved.
5 * This code may only be used under the BSD style license found at
6 * http://polymer.github.io/LICENSE.txt
7 * The complete set of authors may be found at
8 * http://polymer.github.io/AUTHORS.txt
9 * The complete set of contributors may be found at
10 * http://polymer.github.io/CONTRIBUTORS.txt
11 * Code distributed by Google as part of the polymer project is also
12 * subject to an additional IP rights grant found at
13 * http://polymer.github.io/PATENTS.txt
14 */
15var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
16 return new (P || (P = Promise))(function (resolve, reject) {
17 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
18 function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
19 function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
20 step((generator = generator.apply(thisArg, _arguments || [])).next());
21 });
22};
23var __asyncValues = (this && this.__asyncValues) || function (o) {
24 if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
25 var m = o[Symbol.asyncIterator], i;
26 return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
27 function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
28 function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
29};
30var __await = (this && this.__await) || function (v) { return this instanceof __await ? (this.v = v, this) : new __await(v); }
31var __asyncGenerator = (this && this.__asyncGenerator) || function (thisArg, _arguments, generator) {
32 if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
33 var g = generator.apply(thisArg, _arguments || []), i, q = [];
34 return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
35 function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
36 function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
37 function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
38 function fulfill(value) { resume("next", value); }
39 function reject(value) { resume("throw", value); }
40 function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }
41};
42Object.defineProperty(exports, "__esModule", { value: true });
43const html_transform_1 = require("./html-transform");
44const streams_1 = require("./streams");
45/**
46 * When compiling to ES5 we need to inject Babel's helpers into a global so
47 * that they don't need to be included with each compiled file.
48 */
49class BabelHelpersInjector extends streams_1.AsyncTransformStream {
50 constructor(entrypoint) {
51 super({ objectMode: true });
52 this.entrypoint = entrypoint;
53 }
54 _transformIter(files) {
55 return __asyncGenerator(this, arguments, function* _transformIter_1() {
56 var e_1, _a;
57 try {
58 for (var files_1 = __asyncValues(files), files_1_1; files_1_1 = yield __await(files_1.next()), !files_1_1.done;) {
59 const file = files_1_1.value;
60 yield yield __await(yield __await(this.processFile(file)));
61 }
62 }
63 catch (e_1_1) { e_1 = { error: e_1_1 }; }
64 finally {
65 try {
66 if (files_1_1 && !files_1_1.done && (_a = files_1.return)) yield __await(_a.call(files_1));
67 }
68 finally { if (e_1) throw e_1.error; }
69 }
70 });
71 }
72 processFile(file) {
73 return __awaiter(this, void 0, void 0, function* () {
74 if (file.path !== this.entrypoint) {
75 return file;
76 }
77 const contents = yield streams_1.getFileContents(file);
78 const transformed = html_transform_1.htmlTransform(contents, { injectBabelHelpers: 'full' });
79 const newFile = file.clone();
80 newFile.contents = Buffer.from(transformed, 'utf-8');
81 return newFile;
82 });
83 }
84}
85exports.BabelHelpersInjector = BabelHelpersInjector;
86//# sourceMappingURL=inject-babel-helpers.js.map
\No newline at end of file