From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Received: by 2002:a6b:794b:: with SMTP id j11mr366058iop.0.1545351605686; Thu, 20 Dec 2018 16:20:05 -0800 (PST) X-Received: by 2002:a9d:da3:: with SMTP id 32mr3700ots.3.1545351605364; Thu, 20 Dec 2018 16:20:05 -0800 (PST) Path: eternal-september.org!reader01.eternal-september.org!feeder.eternal-september.org!news.gegeweb.eu!gegeweb.org!usenet-fr.net!proxad.net!feeder1-2.proxad.net!209.85.166.215.MISMATCH!k10no20688itk.0!news-out.google.com!v141ni30ita.0!nntp.google.com!q69no20675itb.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Thu, 20 Dec 2018 16:20:05 -0800 (PST) In-Reply-To: <3d894ae7-341c-48e4-acb6-eff433ab9766@googlegroups.com> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=73.207.83.89; posting-account=AgomvAoAAAAj6rtZlNDUf1S1XVXbXDpg NNTP-Posting-Host: 73.207.83.89 References: <62da32c9-61b7-4ed1-afdf-9319eff5fe8a@googlegroups.com> <3d894ae7-341c-48e4-acb6-eff433ab9766@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <4f2ce289-1673-4248-b38e-08a735290a22@googlegroups.com> Subject: Re: AWS template documentation help From: Michael Hardeman Injection-Date: Fri, 21 Dec 2018 00:20:05 +0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Xref: reader01.eternal-september.org comp.lang.ada:55091 Date: 2018-12-20T16:20:05-08:00 List-Id: So I could make the Start_With =3D> @, which works, but the problem is that= 's not unique enough. There is an @license comment at the top of their sour= ce code that causes AWS to throw an error for non-terminated templates. On Thursday, December 20, 2018 at 7:12:24 PM UTC-5, Michael Hardeman wrote: > I have done that,=20 >=20 > It works with other delimiters, but when the Start_With starts with ' it = seems to fail. >=20 > The problem I'm really solve is creating a modern Single Page App, that's= served and built in AWS. I'm using polymer 3, they do some very funky stuf= f. when It's served via the polymer-cli's "polymer serve" command, all java= script module paths that start with @ are served to the browser modified. = =20 >=20 > for example: > import { PolymerElement, html } from '@polymer/polymer/polymer-element.js= '; >=20 > is modified to > import { PolymerElement, html } from 'node_modules/@polymer/polymer/polym= er-element.js'; >=20 > So in order to emulate this, I need to replace '@polymer/ with 'node_modu= les/@polymer/