├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .vscode ├── launch.json └── settings.json ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── bin ├── addIntegrityToForeignRelations ├── buildProduction ├── findUnusedSelectors └── optimizeImage ├── lib ├── AssetGraph.js └── transforms │ ├── buildProduction.js │ ├── cloneForEachConditionValue.js │ └── processImages.js ├── package.json ├── test ├── bin │ └── buildProduction.js ├── mocha.opts ├── transforms │ ├── buildProduction.js │ ├── cloneForEachConditionValue.js │ └── processImages.js └── unexpected-with-plugins.js └── testdata ├── bin └── buildProduction │ ├── autoprefixer │ └── index.html │ ├── browserslistInPackageJson │ ├── index.html │ └── package.json │ └── javaScriptWithInternetExplorer8 │ └── index.html └── transforms ├── buildProduction ├── GetStaticUrl │ ├── index.html │ └── justThisOneFile.txt ├── GetStaticUrlFlash │ ├── index.html │ └── swf │ │ └── foo.swf ├── GetStaticUrlImageOnCdn │ ├── images │ │ └── test.png │ └── index.html ├── HtmlSvgIsland │ ├── gaussianBlur.svg │ └── index.html ├── HtmlSvgIslandWithStyle │ └── index.html ├── JavaScriptStaticUrlWithProcessedImage │ ├── images │ │ ├── bar.png │ │ └── foo.png │ └── index.html ├── absoluteUrlToSourceMapOnCdn │ ├── bundle.js │ ├── bundle.js.map │ └── index.html ├── addSourceMapToInlineJavaScript │ └── index.html ├── assetsThatShouldNotBeMoved │ ├── .htaccess │ ├── favicon.ico │ ├── humans.txt │ ├── index.html │ └── robots.txt ├── asyncAndDeferredScripts │ ├── asyncscript1.js │ ├── asyncscript2.js │ ├── deferscript1.js │ ├── deferscript2.js │ └── index.html ├── bundlingInHtmlFragments │ ├── a.css │ ├── a.js │ ├── b.css │ ├── b.js │ └── index.html ├── canonicalRoot │ ├── index.html │ └── script.js ├── contentSecurityPolicy │ └── existingPolicy │ │ ├── foo.png │ │ ├── index.html │ │ ├── script.js │ │ └── styles.css ├── crossoriginAnonymous │ ├── index.html │ ├── script.js │ └── styles.css ├── dataMainAndAlmondJs │ ├── a.js │ ├── almond.js │ ├── d.js │ ├── index.html │ ├── main.js │ └── require.js ├── duplicateImports │ ├── imported.css │ ├── index.html │ ├── one.css │ └── two.css ├── emptyScriptsAndStylesheetsWithAttributes │ └── index.html ├── excludePattern │ ├── baz │ │ └── quux.png │ ├── foo │ │ └── bar.css │ ├── index.html │ ├── js │ │ └── main.js │ └── æ.css ├── existingExternalSourceMap │ ├── foo.css │ ├── foo.less │ ├── foo.map │ ├── index.html │ └── someMore.css ├── existingJavaScriptSourceMapsWithSourcesContent │ ├── index.html │ ├── script1.js │ ├── script1.map │ ├── script1.min.js │ ├── script2.js │ ├── script2.map │ └── script2.min.js ├── existingSourceMap │ ├── index.html │ ├── jquery-1.10.1.js │ ├── jquery-1.10.1.min.js │ └── jquery-1.10.1.min.map ├── faviconOutsideRoot │ ├── foo │ │ └── favicon.ico │ └── index.html ├── fileNamesWithDots │ ├── index.html │ ├── script.with.dots.js │ └── style.sheet.with.dots.css ├── fileRedirect │ ├── directory │ │ └── index.html │ └── index.html ├── fontWithIeFix │ ├── font.eot │ └── index.html ├── fragmentWithUnpopulatedRelation │ ├── index.html │ └── templates │ │ └── myTemplate.html ├── gzip │ ├── foo.js │ ├── foo.png │ ├── index.html │ ├── require.js │ └── sockjs-0.3.4.js.gz ├── htmlDataMainWithI18n │ ├── index.html │ ├── script.js │ └── webmail.i18n ├── htmlWebpackPlugin │ ├── public │ │ └── index.html │ ├── src │ │ ├── App.js │ │ └── index.js │ └── webpack.config.js ├── imagesWithWrongExtensions │ ├── actuallyAJpeg.png │ ├── actuallyAPng.jpg │ ├── index.html │ └── style.css ├── implicitBaseUrl │ ├── index.html │ ├── src │ │ ├── component.js │ │ └── main.js │ └── vendor │ │ └── require-2.1.5.js ├── initialAssetWithoutHtmlElement │ └── index.html ├── initialHtmlFragments │ ├── foo.png │ ├── index.html │ ├── js │ │ └── script.js │ ├── myTemplate.html │ └── script.js ├── inkscape │ ├── image.svg │ ├── index.html │ └── styles.css ├── inline │ ├── index.html │ ├── script.js │ └── styles.css ├── inlineSourceMapWithSourcesContent │ ├── graph.js │ └── index.html ├── issue114 │ ├── a.js │ └── index.html ├── issue54 │ ├── index.html │ └── js │ │ ├── app.js │ │ └── vendor │ │ ├── backbone-amd │ │ └── backbone.js │ │ ├── deep-model.js │ │ └── requirejs │ │ └── require.js ├── issue58 │ ├── index.html │ ├── js │ │ ├── main.js │ │ └── text.js │ ├── require.js │ └── templates │ │ └── header.html ├── issue69 │ ├── app │ │ └── main.js │ ├── index.html │ ├── require.js │ └── vendor │ │ └── sockjs │ │ └── sockjs-0.3.4.js ├── issue83 │ ├── index.html │ └── script.js ├── javaScriptFetch │ └── index.html ├── javaScriptSerializationOptions │ └── script.js ├── lessCompiler │ ├── index.html │ ├── less-1.3.0.min.js │ └── less.js ├── lessPlugin │ ├── a.less │ ├── b.less │ ├── c.less │ ├── index.html │ ├── main.js │ ├── require-less │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── example │ │ │ ├── build.js │ │ │ ├── setup.sh │ │ │ ├── test.html │ │ │ └── www │ │ │ │ ├── app.js │ │ │ │ ├── components │ │ │ │ ├── component.js │ │ │ │ └── component.less │ │ │ │ ├── less-style │ │ │ │ ├── logo.png │ │ │ │ ├── style.less │ │ │ │ └── test.css │ │ │ │ ├── require-css │ │ │ │ ├── require-less │ │ │ │ ├── test.html │ │ │ │ └── text.js │ │ ├── less-builder.js │ │ ├── less.js │ │ ├── lessc.js │ │ ├── normalize.js │ │ └── package.json │ ├── require.js │ └── someModule.js ├── lessWithSourceMap │ ├── index.html │ ├── morestyles.less │ └── styles.less ├── linkedNonInitialHtml │ ├── index.html │ └── other.html ├── linkedNonInitialHtmlWithFileRedirect │ ├── index.html │ └── other │ │ └── index.html ├── md5Hashes │ ├── heart.ics │ ├── heart.svg │ ├── index.html │ └── script.js ├── missingDataBind │ └── index.html ├── multipleHtmlsReferencingTheSameExternalRequireJsConfig │ ├── app │ │ ├── main1.js │ │ ├── main2.js │ │ └── someDependency.js │ ├── app1.html │ ├── app2.html │ ├── require.js │ └── requireJsConfig.js ├── noCompress │ └── index.html ├── nonExistentFileWithoutExtension │ └── index.html ├── nonInitialAssetWithIncomingHtmlAnchor │ ├── index.html │ └── index2.html ├── precacheServiceWorker │ ├── bar.txt │ ├── foo.png │ ├── index.html │ └── script.js ├── requireJsCdnPath │ ├── index.html │ ├── main.js │ └── require.js ├── requireJsOrphans │ ├── index.html │ ├── main.js │ ├── module1.js │ ├── module2.js │ ├── module3.js │ ├── module4.js │ └── require.js ├── requiredCssImport │ ├── css-builder.js │ ├── css.js │ ├── foo.css │ ├── index.html │ ├── main.js │ ├── normalize.js │ ├── other.css │ └── require.js ├── rss │ ├── foo.png │ ├── index.html │ └── rssFeed.xml ├── serviceWorker │ ├── application.js │ ├── htmlregistration.html │ ├── javascriptregistration.html │ └── service-worker.js ├── simple │ ├── index.html │ ├── morescripts │ │ ├── amdDependency.js │ │ ├── lessPlugin │ │ │ ├── a.less │ │ │ ├── b.less │ │ │ ├── c.less │ │ │ ├── index.html │ │ │ ├── index2.html │ │ │ ├── main.js │ │ │ ├── main2.js │ │ │ ├── require.js │ │ │ └── someModule.js │ │ ├── main.js │ │ ├── require-less │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── example │ │ │ │ ├── build.js │ │ │ │ ├── setup.sh │ │ │ │ ├── test.html │ │ │ │ └── www │ │ │ │ │ ├── app.js │ │ │ │ │ ├── components │ │ │ │ │ ├── component.js │ │ │ │ │ └── component.less │ │ │ │ │ ├── less-style │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── style.less │ │ │ │ │ └── test.css │ │ │ │ │ ├── require-css │ │ │ │ │ ├── require-less │ │ │ │ │ ├── test.html │ │ │ │ │ └── text.js │ │ │ ├── less-builder.js │ │ │ ├── less.js │ │ │ ├── lessc.js │ │ │ ├── normalize.js │ │ │ └── package.json │ │ ├── shimmed.js │ │ ├── somethingElse.js │ │ ├── text.js │ │ └── view │ │ │ └── styles.less │ ├── myImage.gif │ ├── require.js │ ├── script1.js │ ├── script2.js │ ├── script3.js │ ├── someTextFile.txt │ ├── styles1.css │ ├── styles2.css │ └── styles3.css ├── sourceMaps │ ├── a.js │ ├── b.js │ ├── c.js │ ├── fusile-output │ │ ├── fonts.css │ │ ├── index.html │ │ ├── main.css │ │ └── main.js │ ├── index.html │ ├── jquery-1.10.1.js │ ├── jquery-1.10.1.min.js │ └── jquery-1.10.1.min.map ├── spriteAndProcessImages │ ├── foo.png │ └── index.html ├── staticUrlMovedToHttpsCdn │ ├── heart.ics │ ├── heart.svg │ ├── index.html │ └── script.js ├── stripDebug │ └── index.html ├── styleSheetInTemplate │ ├── component.html │ ├── index.html │ └── style.css ├── subResourceIntegrity │ ├── existingIntegrityAttributes │ │ └── index.html │ ├── externalScriptAndStylesheet │ │ ├── index.html │ │ ├── jquery-2.2.3.min.js │ │ └── styles.css │ └── scriptsAndStylesheetOnForeignDomain │ │ └── index.html ├── svgFilter │ ├── heart.svg │ ├── index.html │ └── myFilter.js ├── svgWithSelfReferences │ ├── image.svg │ └── index.html ├── svgWithUseXlinkHref │ ├── image.svg │ └── index.html ├── svgsWithIdenticalInlineStyle │ ├── gears.svg │ └── gears2.svg ├── systemJsAssetPlugin │ ├── config.js │ ├── index.html │ ├── main.js │ ├── system.js │ ├── systemjs-asset-plugin │ │ ├── asset-plugin.js │ │ └── package.json │ ├── test-bar.txt │ └── test-foo.txt ├── systemJsConditionals │ ├── conditionalTemplate │ │ ├── config.js │ │ ├── foo-rainy.ko │ │ ├── foo-sunny.ko │ │ ├── index.html │ │ ├── main.js │ │ ├── system.js │ │ ├── systemjs-asset-plugin │ │ ├── tpl.js │ │ └── weather.js │ ├── locale │ │ ├── LICENSE │ │ ├── README.md │ │ ├── alert-in-da.js │ │ ├── alert-in-en_us.js │ │ ├── config.js │ │ ├── index.html │ │ ├── locale.js │ │ ├── main.js │ │ ├── neededInAllLanguages.js │ │ ├── neededInAmericanEnglish.js │ │ ├── neededInDanish.js │ │ └── system.js │ ├── localeJs │ │ ├── LICENSE │ │ ├── README.md │ │ ├── alert-in-da.js │ │ ├── alert-in-en_us.js │ │ ├── config.js │ │ ├── index.html │ │ ├── locale.js │ │ ├── main.js │ │ ├── neededInAllLanguages.js │ │ ├── neededInAmericanEnglish.js │ │ ├── neededInDanish.js │ │ └── system.js │ └── stylesheet │ │ ├── LICENSE │ │ ├── README.md │ │ ├── config.js │ │ ├── css-builder.js │ │ ├── css.js │ │ ├── index.html │ │ ├── locale.js │ │ ├── main.js │ │ ├── styles.da.css │ │ ├── styles.en_us.css │ │ └── system.js ├── trailingWhitespaceInInlineScript │ └── index.html ├── webWorker │ ├── bar.js │ ├── foo.js │ ├── index.html │ ├── quux.js │ └── worker.js ├── webpack │ ├── index.html │ ├── jquery-1.10.1.js │ ├── jquery-1.10.1.min.js │ ├── jquery-1.10.1.min.map │ ├── main.js │ ├── noExistingSourceMap.js │ └── webpack.config.js └── webpackSourceMaps │ ├── src │ └── index.js │ ├── webpack.config.js │ └── webroot │ └── index.html ├── cloneForEachConditionValue ├── noConditions │ └── index.html ├── singleCondition │ ├── index.html │ ├── rainy.css │ ├── rainy.js │ ├── sunny.css │ └── sunny.js └── twoIndependentConditions │ ├── happy.css │ ├── happy.js │ ├── index.html │ ├── rainy.css │ ├── rainy.js │ ├── sad.css │ ├── sad.js │ ├── sunny.css │ └── sunny.js └── processImages ├── autoFalse ├── index.html └── purplealpha24bit.png ├── css ├── purplealpha24bit.png ├── redalpha24bit.png └── style.css ├── devicePixelRatio ├── foo.png ├── foo@2x.png ├── foo@8x.png └── style.css ├── dot.in.path ├── redalpha24bit.png └── style.css ├── gifsicle ├── animated.gif └── index.html ├── gm ├── index.html └── myImage.png ├── html ├── index.html └── myImage.png ├── jpeg ├── style.css └── turtle.jpg ├── pngs ├── photo.png ├── purplealpha24bit.png ├── redalpha24bit.png └── style.css ├── setFormat ├── foo.png └── index.css ├── svg ├── addBogusElement.js ├── dialog-information.svg └── index.html └── svgFilter ├── heart.svg ├── index.html └── myFilter.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /testdata/ 3 | /coverage/ 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /coverage/ 3 | .nyc_output 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/README.md -------------------------------------------------------------------------------- /bin/addIntegrityToForeignRelations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/bin/addIntegrityToForeignRelations -------------------------------------------------------------------------------- /bin/buildProduction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/bin/buildProduction -------------------------------------------------------------------------------- /bin/findUnusedSelectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/bin/findUnusedSelectors -------------------------------------------------------------------------------- /bin/optimizeImage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/bin/optimizeImage -------------------------------------------------------------------------------- /lib/AssetGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/lib/AssetGraph.js -------------------------------------------------------------------------------- /lib/transforms/buildProduction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/lib/transforms/buildProduction.js -------------------------------------------------------------------------------- /lib/transforms/cloneForEachConditionValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/lib/transforms/cloneForEachConditionValue.js -------------------------------------------------------------------------------- /lib/transforms/processImages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/lib/transforms/processImages.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/package.json -------------------------------------------------------------------------------- /test/bin/buildProduction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/test/bin/buildProduction.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/transforms/buildProduction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/test/transforms/buildProduction.js -------------------------------------------------------------------------------- /test/transforms/cloneForEachConditionValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/test/transforms/cloneForEachConditionValue.js -------------------------------------------------------------------------------- /test/transforms/processImages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/test/transforms/processImages.js -------------------------------------------------------------------------------- /test/unexpected-with-plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/test/unexpected-with-plugins.js -------------------------------------------------------------------------------- /testdata/bin/buildProduction/autoprefixer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/bin/buildProduction/autoprefixer/index.html -------------------------------------------------------------------------------- /testdata/bin/buildProduction/browserslistInPackageJson/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/bin/buildProduction/browserslistInPackageJson/index.html -------------------------------------------------------------------------------- /testdata/bin/buildProduction/browserslistInPackageJson/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "browserslist": ["IE >= 11"] 3 | } 4 | -------------------------------------------------------------------------------- /testdata/bin/buildProduction/javaScriptWithInternetExplorer8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/bin/buildProduction/javaScriptWithInternetExplorer8/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/GetStaticUrl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/GetStaticUrl/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/GetStaticUrl/justThisOneFile.txt: -------------------------------------------------------------------------------- 1 | The contents of the file. 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/GetStaticUrlFlash/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/GetStaticUrlFlash/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/GetStaticUrlFlash/swf/foo.swf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/GetStaticUrlImageOnCdn/images/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/GetStaticUrlImageOnCdn/images/test.png -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/GetStaticUrlImageOnCdn/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/GetStaticUrlImageOnCdn/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/HtmlSvgIsland/gaussianBlur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/HtmlSvgIsland/gaussianBlur.svg -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/HtmlSvgIsland/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/HtmlSvgIsland/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/HtmlSvgIslandWithStyle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/HtmlSvgIslandWithStyle/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/JavaScriptStaticUrlWithProcessedImage/images/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/JavaScriptStaticUrlWithProcessedImage/images/bar.png -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/JavaScriptStaticUrlWithProcessedImage/images/foo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/JavaScriptStaticUrlWithProcessedImage/images/foo.png -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/JavaScriptStaticUrlWithProcessedImage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/JavaScriptStaticUrlWithProcessedImage/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/absoluteUrlToSourceMapOnCdn/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/absoluteUrlToSourceMapOnCdn/bundle.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/absoluteUrlToSourceMapOnCdn/bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/absoluteUrlToSourceMapOnCdn/bundle.js.map -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/absoluteUrlToSourceMapOnCdn/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/absoluteUrlToSourceMapOnCdn/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/addSourceMapToInlineJavaScript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/addSourceMapToInlineJavaScript/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/assetsThatShouldNotBeMoved/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/assetsThatShouldNotBeMoved/.htaccess -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/assetsThatShouldNotBeMoved/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/assetsThatShouldNotBeMoved/favicon.ico -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/assetsThatShouldNotBeMoved/humans.txt: -------------------------------------------------------------------------------- 1 | /* SITE */ 2 | 3 | This site was made by humans. 4 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/assetsThatShouldNotBeMoved/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/assetsThatShouldNotBeMoved/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/assetsThatShouldNotBeMoved/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/asyncAndDeferredScripts/asyncscript1.js: -------------------------------------------------------------------------------- 1 | alert('async1'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/asyncAndDeferredScripts/asyncscript2.js: -------------------------------------------------------------------------------- 1 | alert('async2'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/asyncAndDeferredScripts/deferscript1.js: -------------------------------------------------------------------------------- 1 | alert('defer1'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/asyncAndDeferredScripts/deferscript2.js: -------------------------------------------------------------------------------- 1 | alert('defer2'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/asyncAndDeferredScripts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/asyncAndDeferredScripts/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/bundlingInHtmlFragments/a.css: -------------------------------------------------------------------------------- 1 | body {color: #aaa;} 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/bundlingInHtmlFragments/a.js: -------------------------------------------------------------------------------- 1 | alert("a"); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/bundlingInHtmlFragments/b.css: -------------------------------------------------------------------------------- 1 | body {color: #bbb;} 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/bundlingInHtmlFragments/b.js: -------------------------------------------------------------------------------- 1 | alert("b"); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/bundlingInHtmlFragments/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/bundlingInHtmlFragments/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/canonicalRoot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/canonicalRoot/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/canonicalRoot/script.js: -------------------------------------------------------------------------------- 1 | alert('script'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/contentSecurityPolicy/existingPolicy/foo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/contentSecurityPolicy/existingPolicy/foo.png -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/contentSecurityPolicy/existingPolicy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/contentSecurityPolicy/existingPolicy/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/contentSecurityPolicy/existingPolicy/script.js: -------------------------------------------------------------------------------- 1 | alert('foo'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/contentSecurityPolicy/existingPolicy/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/contentSecurityPolicy/existingPolicy/styles.css -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/crossoriginAnonymous/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/crossoriginAnonymous/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/crossoriginAnonymous/script.js: -------------------------------------------------------------------------------- 1 | alert('script'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/crossoriginAnonymous/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: maroon; 3 | } 4 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/dataMainAndAlmondJs/a.js: -------------------------------------------------------------------------------- 1 | alert("a"); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/dataMainAndAlmondJs/almond.js: -------------------------------------------------------------------------------- 1 | alert("almond"); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/dataMainAndAlmondJs/d.js: -------------------------------------------------------------------------------- 1 | alert("d"); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/dataMainAndAlmondJs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/dataMainAndAlmondJs/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/dataMainAndAlmondJs/main.js: -------------------------------------------------------------------------------- 1 | alert('main'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/dataMainAndAlmondJs/require.js: -------------------------------------------------------------------------------- 1 | alert("require"); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/duplicateImports/imported.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: white; 3 | } 4 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/duplicateImports/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/duplicateImports/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/duplicateImports/one.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/duplicateImports/one.css -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/duplicateImports/two.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/duplicateImports/two.css -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/emptyScriptsAndStylesheetsWithAttributes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/emptyScriptsAndStylesheetsWithAttributes/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/excludePattern/baz/quux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/excludePattern/baz/quux.png -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/excludePattern/foo/bar.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: papayawhip; 3 | } 4 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/excludePattern/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/excludePattern/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/excludePattern/js/main.js: -------------------------------------------------------------------------------- 1 | console.log('JS loaded!') 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/excludePattern/æ.css: -------------------------------------------------------------------------------- 1 | .waaat { color: hotpink; } 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/existingExternalSourceMap/foo.css: -------------------------------------------------------------------------------- 1 | body{color:#555} 2 | /*# sourceMappingURL=foo.map */ 3 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/existingExternalSourceMap/foo.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/existingExternalSourceMap/foo.less -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/existingExternalSourceMap/foo.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/existingExternalSourceMap/foo.map -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/existingExternalSourceMap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/existingExternalSourceMap/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/existingExternalSourceMap/someMore.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/existingJavaScriptSourceMapsWithSourcesContent/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/existingJavaScriptSourceMapsWithSourcesContent/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/existingJavaScriptSourceMapsWithSourcesContent/script1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/existingJavaScriptSourceMapsWithSourcesContent/script1.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/existingJavaScriptSourceMapsWithSourcesContent/script1.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/existingJavaScriptSourceMapsWithSourcesContent/script1.map -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/existingJavaScriptSourceMapsWithSourcesContent/script1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/existingJavaScriptSourceMapsWithSourcesContent/script1.min.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/existingJavaScriptSourceMapsWithSourcesContent/script2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/existingJavaScriptSourceMapsWithSourcesContent/script2.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/existingJavaScriptSourceMapsWithSourcesContent/script2.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/existingJavaScriptSourceMapsWithSourcesContent/script2.map -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/existingJavaScriptSourceMapsWithSourcesContent/script2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/existingJavaScriptSourceMapsWithSourcesContent/script2.min.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/existingSourceMap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/existingSourceMap/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/existingSourceMap/jquery-1.10.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/existingSourceMap/jquery-1.10.1.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/existingSourceMap/jquery-1.10.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/existingSourceMap/jquery-1.10.1.min.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/existingSourceMap/jquery-1.10.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/existingSourceMap/jquery-1.10.1.min.map -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/faviconOutsideRoot/foo/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/faviconOutsideRoot/foo/favicon.ico -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/faviconOutsideRoot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/faviconOutsideRoot/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/fileNamesWithDots/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/fileNamesWithDots/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/fileNamesWithDots/script.with.dots.js: -------------------------------------------------------------------------------- 1 | alert('foo'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/fileNamesWithDots/style.sheet.with.dots.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/fileRedirect/directory/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/fileRedirect/directory/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/fileRedirect/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/fileRedirect/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/fontWithIeFix/font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/fontWithIeFix/font.eot -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/fontWithIeFix/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/fontWithIeFix/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/fragmentWithUnpopulatedRelation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/fragmentWithUnpopulatedRelation/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/fragmentWithUnpopulatedRelation/templates/myTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/fragmentWithUnpopulatedRelation/templates/myTemplate.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/gzip/foo.js: -------------------------------------------------------------------------------- 1 | alert("this is a tiny script that's not worth gzipping"); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/gzip/foo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/gzip/foo.png -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/gzip/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/gzip/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/gzip/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/gzip/require.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/gzip/sockjs-0.3.4.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/gzip/sockjs-0.3.4.js.gz -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/htmlDataMainWithI18n/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/htmlDataMainWithI18n/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/htmlDataMainWithI18n/script.js: -------------------------------------------------------------------------------- 1 | 'webmail.i18n'.toString('url'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/htmlDataMainWithI18n/webmail.i18n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/htmlDataMainWithI18n/webmail.i18n -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/htmlWebpackPlugin/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/htmlWebpackPlugin/public/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/htmlWebpackPlugin/src/App.js: -------------------------------------------------------------------------------- 1 | alert('App'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/htmlWebpackPlugin/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/htmlWebpackPlugin/src/index.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/htmlWebpackPlugin/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/htmlWebpackPlugin/webpack.config.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/imagesWithWrongExtensions/actuallyAJpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/imagesWithWrongExtensions/actuallyAJpeg.png -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/imagesWithWrongExtensions/actuallyAPng.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/imagesWithWrongExtensions/actuallyAPng.jpg -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/imagesWithWrongExtensions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/imagesWithWrongExtensions/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/imagesWithWrongExtensions/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/imagesWithWrongExtensions/style.css -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/implicitBaseUrl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/implicitBaseUrl/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/implicitBaseUrl/src/component.js: -------------------------------------------------------------------------------- 1 | define([], function () {}); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/implicitBaseUrl/src/main.js: -------------------------------------------------------------------------------- 1 | require(['component'], function () {}); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/implicitBaseUrl/vendor/require-2.1.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/implicitBaseUrl/vendor/require-2.1.5.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/initialAssetWithoutHtmlElement/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/initialAssetWithoutHtmlElement/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/initialHtmlFragments/foo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/initialHtmlFragments/foo.png -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/initialHtmlFragments/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/initialHtmlFragments/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/initialHtmlFragments/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/initialHtmlFragments/js/script.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/initialHtmlFragments/myTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/initialHtmlFragments/myTemplate.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/initialHtmlFragments/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/inkscape/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/inkscape/image.svg -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/inkscape/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/inkscape/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/inkscape/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/inkscape/styles.css -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/inline/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/inline/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/inline/script.js: -------------------------------------------------------------------------------- 1 | alert("script"); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/inline/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: maroon; 3 | } 4 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/inlineSourceMapWithSourcesContent/graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/inlineSourceMapWithSourcesContent/graph.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/inlineSourceMapWithSourcesContent/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/inlineSourceMapWithSourcesContent/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/issue114/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/issue114/a.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/issue114/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/issue114/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/issue54/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/issue54/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/issue54/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/issue54/js/app.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/issue54/js/vendor/backbone-amd/backbone.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | return "backbone"; 3 | }); 4 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/issue54/js/vendor/deep-model.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | return "deepmodel"; 3 | }); 4 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/issue54/js/vendor/requirejs/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/issue54/js/vendor/requirejs/require.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/issue58/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/issue58/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/issue58/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/issue58/js/main.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/issue58/js/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/issue58/js/text.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/issue58/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/issue58/require.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/issue58/templates/header.html: -------------------------------------------------------------------------------- 1 |

The header

2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/issue69/app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/issue69/app/main.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/issue69/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/issue69/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/issue69/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/issue69/require.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/issue69/vendor/sockjs/sockjs-0.3.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/issue69/vendor/sockjs/sockjs-0.3.4.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/issue83/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/issue83/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/issue83/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/issue83/script.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/javaScriptFetch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/javaScriptFetch/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/javaScriptSerializationOptions/script.js: -------------------------------------------------------------------------------- 1 | function foo() { 2 | alert('☺'); 3 | } 4 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessCompiler/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessCompiler/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessCompiler/less-1.3.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessCompiler/less-1.3.0.min.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessCompiler/less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessCompiler/less.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessPlugin/a.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessPlugin/a.less -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessPlugin/b.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessPlugin/b.less -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessPlugin/c.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessPlugin/c.less -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessPlugin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessPlugin/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessPlugin/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessPlugin/main.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessPlugin/require-less/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessPlugin/require-less/LICENSE -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessPlugin/require-less/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessPlugin/require-less/README.md -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessPlugin/require-less/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessPlugin/require-less/bower.json -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessPlugin/require-less/example/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessPlugin/require-less/example/build.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessPlugin/require-less/example/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessPlugin/require-less/example/setup.sh -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessPlugin/require-less/example/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessPlugin/require-less/example/test.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessPlugin/require-less/example/www/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessPlugin/require-less/example/www/app.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessPlugin/require-less/example/www/components/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessPlugin/require-less/example/www/components/component.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessPlugin/require-less/example/www/components/component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessPlugin/require-less/example/www/components/component.less -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessPlugin/require-less/example/www/less-style/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessPlugin/require-less/example/www/less-style/logo.png -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessPlugin/require-less/example/www/less-style/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessPlugin/require-less/example/www/less-style/style.less -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessPlugin/require-less/example/www/less-style/test.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-image: url('img.jpg'); 3 | } -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessPlugin/require-less/example/www/require-css: -------------------------------------------------------------------------------- 1 | ../../../require-css -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessPlugin/require-less/example/www/require-less: -------------------------------------------------------------------------------- 1 | ../../ -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessPlugin/require-less/example/www/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessPlugin/require-less/example/www/test.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessPlugin/require-less/example/www/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessPlugin/require-less/example/www/text.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessPlugin/require-less/less-builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessPlugin/require-less/less-builder.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessPlugin/require-less/less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessPlugin/require-less/less.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessPlugin/require-less/lessc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessPlugin/require-less/lessc.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessPlugin/require-less/normalize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessPlugin/require-less/normalize.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessPlugin/require-less/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessPlugin/require-less/package.json -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessPlugin/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessPlugin/require.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessPlugin/someModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessPlugin/someModule.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessWithSourceMap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessWithSourceMap/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessWithSourceMap/morestyles.less: -------------------------------------------------------------------------------- 1 | @some-other-color: #222; 2 | 3 | strong { 4 | font-weight: 400; 5 | } 6 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/lessWithSourceMap/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/lessWithSourceMap/styles.less -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/linkedNonInitialHtml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/linkedNonInitialHtml/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/linkedNonInitialHtml/other.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/linkedNonInitialHtml/other.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/linkedNonInitialHtmlWithFileRedirect/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/linkedNonInitialHtmlWithFileRedirect/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/linkedNonInitialHtmlWithFileRedirect/other/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/linkedNonInitialHtmlWithFileRedirect/other/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/md5Hashes/heart.ics: -------------------------------------------------------------------------------- 1 | foobarics 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/md5Hashes/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/md5Hashes/heart.svg -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/md5Hashes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/md5Hashes/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/md5Hashes/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/md5Hashes/script.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/missingDataBind/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/missingDataBind/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/multipleHtmlsReferencingTheSameExternalRequireJsConfig/app/main1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/multipleHtmlsReferencingTheSameExternalRequireJsConfig/app/main1.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/multipleHtmlsReferencingTheSameExternalRequireJsConfig/app/main2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/multipleHtmlsReferencingTheSameExternalRequireJsConfig/app/main2.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/multipleHtmlsReferencingTheSameExternalRequireJsConfig/app/someDependency.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | return "some dependency"; 3 | }); -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/multipleHtmlsReferencingTheSameExternalRequireJsConfig/app1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/multipleHtmlsReferencingTheSameExternalRequireJsConfig/app1.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/multipleHtmlsReferencingTheSameExternalRequireJsConfig/app2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/multipleHtmlsReferencingTheSameExternalRequireJsConfig/app2.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/multipleHtmlsReferencingTheSameExternalRequireJsConfig/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/multipleHtmlsReferencingTheSameExternalRequireJsConfig/require.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/multipleHtmlsReferencingTheSameExternalRequireJsConfig/requireJsConfig.js: -------------------------------------------------------------------------------- 1 | var require = { 2 | baseUrl: '/' 3 | }; 4 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/noCompress/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/noCompress/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/nonExistentFileWithoutExtension/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/nonExistentFileWithoutExtension/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/nonInitialAssetWithIncomingHtmlAnchor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/nonInitialAssetWithIncomingHtmlAnchor/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/nonInitialAssetWithIncomingHtmlAnchor/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/nonInitialAssetWithIncomingHtmlAnchor/index2.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/precacheServiceWorker/bar.txt: -------------------------------------------------------------------------------- 1 | contents of bar.txt 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/precacheServiceWorker/foo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/precacheServiceWorker/foo.png -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/precacheServiceWorker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/precacheServiceWorker/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/precacheServiceWorker/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/precacheServiceWorker/script.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/requireJsCdnPath/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/requireJsCdnPath/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/requireJsCdnPath/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/requireJsCdnPath/main.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/requireJsCdnPath/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/requireJsCdnPath/require.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/requireJsOrphans/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/requireJsOrphans/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/requireJsOrphans/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/requireJsOrphans/main.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/requireJsOrphans/module1.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | return 'module1'; 3 | }); 4 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/requireJsOrphans/module2.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | return 'module2'; 3 | }); 4 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/requireJsOrphans/module3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/requireJsOrphans/module3.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/requireJsOrphans/module4.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | return 'module4'; 3 | }); 4 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/requireJsOrphans/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/requireJsOrphans/require.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/requiredCssImport/css-builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/requiredCssImport/css-builder.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/requiredCssImport/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/requiredCssImport/css.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/requiredCssImport/foo.css: -------------------------------------------------------------------------------- 1 | @import "other.css"; 2 | body { 3 | color: red; 4 | } 5 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/requiredCssImport/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/requiredCssImport/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/requiredCssImport/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/requiredCssImport/main.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/requiredCssImport/normalize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/requiredCssImport/normalize.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/requiredCssImport/other.css: -------------------------------------------------------------------------------- 1 | span { 2 | color: green; 3 | } 4 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/requiredCssImport/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/requiredCssImport/require.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/rss/foo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/rss/foo.png -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/rss/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/rss/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/rss/rssFeed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/rss/rssFeed.xml -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/serviceWorker/application.js: -------------------------------------------------------------------------------- 1 | console.log('I am an application'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/serviceWorker/htmlregistration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/serviceWorker/htmlregistration.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/serviceWorker/javascriptregistration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/serviceWorker/javascriptregistration.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/serviceWorker/service-worker.js: -------------------------------------------------------------------------------- 1 | console.log('I am a service worker'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/amdDependency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/amdDependency.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/lessPlugin/a.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/lessPlugin/a.less -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/lessPlugin/b.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/lessPlugin/b.less -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/lessPlugin/c.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/lessPlugin/c.less -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/lessPlugin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/lessPlugin/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/lessPlugin/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/lessPlugin/index2.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/lessPlugin/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/lessPlugin/main.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/lessPlugin/main2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/lessPlugin/main2.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/lessPlugin/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/lessPlugin/require.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/lessPlugin/someModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/lessPlugin/someModule.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/main.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/require-less/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/require-less/LICENSE -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/require-less/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/require-less/README.md -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/require-less/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/require-less/bower.json -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/require-less/example/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/require-less/example/build.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/require-less/example/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/require-less/example/setup.sh -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/require-less/example/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/require-less/example/test.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/require-less/example/www/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/require-less/example/www/app.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/require-less/example/www/components/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/require-less/example/www/components/component.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/require-less/example/www/components/component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/require-less/example/www/components/component.less -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/require-less/example/www/less-style/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/require-less/example/www/less-style/logo.png -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/require-less/example/www/less-style/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/require-less/example/www/less-style/style.less -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/require-less/example/www/less-style/test.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-image: url('img.jpg'); 3 | } -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/require-less/example/www/require-css: -------------------------------------------------------------------------------- 1 | ../../../require-css -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/require-less/example/www/require-less: -------------------------------------------------------------------------------- 1 | ../../ -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/require-less/example/www/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/require-less/example/www/test.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/require-less/example/www/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/require-less/example/www/text.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/require-less/less-builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/require-less/less-builder.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/require-less/less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/require-less/less.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/require-less/lessc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/require-less/lessc.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/require-less/normalize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/require-less/normalize.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/require-less/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/require-less/package.json -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/shimmed.js: -------------------------------------------------------------------------------- 1 | alert('shimmed'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/somethingElse.js: -------------------------------------------------------------------------------- 1 | alert('something else'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/text.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/morescripts/view/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/morescripts/view/styles.less -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/myImage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/myImage.gif -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/simple/require.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/script1.js: -------------------------------------------------------------------------------- 1 | alert("script1"); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/script2.js: -------------------------------------------------------------------------------- 1 | alert("script2"); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/script3.js: -------------------------------------------------------------------------------- 1 | alert("script3"); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/someTextFile.txt: -------------------------------------------------------------------------------- 1 | someText 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/styles1.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: teal; 3 | } 4 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/styles2.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: maroon; 3 | } 4 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/simple/styles3.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: tan; 3 | } 4 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/sourceMaps/a.js: -------------------------------------------------------------------------------- 1 | alert('a'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/sourceMaps/b.js: -------------------------------------------------------------------------------- 1 | alert('b'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/sourceMaps/c.js: -------------------------------------------------------------------------------- 1 | alert('c'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/sourceMaps/fusile-output/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/sourceMaps/fusile-output/fonts.css -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/sourceMaps/fusile-output/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/sourceMaps/fusile-output/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/sourceMaps/fusile-output/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/sourceMaps/fusile-output/main.css -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/sourceMaps/fusile-output/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/sourceMaps/fusile-output/main.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/sourceMaps/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/sourceMaps/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/sourceMaps/jquery-1.10.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/sourceMaps/jquery-1.10.1.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/sourceMaps/jquery-1.10.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/sourceMaps/jquery-1.10.1.min.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/sourceMaps/jquery-1.10.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/sourceMaps/jquery-1.10.1.min.map -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/spriteAndProcessImages/foo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/spriteAndProcessImages/foo.png -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/spriteAndProcessImages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/spriteAndProcessImages/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/staticUrlMovedToHttpsCdn/heart.ics: -------------------------------------------------------------------------------- 1 | foobarics 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/staticUrlMovedToHttpsCdn/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/staticUrlMovedToHttpsCdn/heart.svg -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/staticUrlMovedToHttpsCdn/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/staticUrlMovedToHttpsCdn/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/staticUrlMovedToHttpsCdn/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/staticUrlMovedToHttpsCdn/script.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/stripDebug/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/stripDebug/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/styleSheetInTemplate/component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/styleSheetInTemplate/component.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/styleSheetInTemplate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/styleSheetInTemplate/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/styleSheetInTemplate/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: red; 3 | } 4 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/subResourceIntegrity/existingIntegrityAttributes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/subResourceIntegrity/existingIntegrityAttributes/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/subResourceIntegrity/externalScriptAndStylesheet/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/subResourceIntegrity/externalScriptAndStylesheet/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/subResourceIntegrity/externalScriptAndStylesheet/jquery-2.2.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/subResourceIntegrity/externalScriptAndStylesheet/jquery-2.2.3.min.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/subResourceIntegrity/externalScriptAndStylesheet/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: maroon; 3 | } 4 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/subResourceIntegrity/scriptsAndStylesheetOnForeignDomain/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/subResourceIntegrity/scriptsAndStylesheetOnForeignDomain/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/svgFilter/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/svgFilter/heart.svg -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/svgFilter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/svgFilter/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/svgFilter/myFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/svgFilter/myFilter.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/svgWithSelfReferences/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/svgWithSelfReferences/image.svg -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/svgWithSelfReferences/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/svgWithSelfReferences/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/svgWithUseXlinkHref/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/svgWithUseXlinkHref/image.svg -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/svgWithUseXlinkHref/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/svgWithUseXlinkHref/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/svgsWithIdenticalInlineStyle/gears.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/svgsWithIdenticalInlineStyle/gears.svg -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/svgsWithIdenticalInlineStyle/gears2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/svgsWithIdenticalInlineStyle/gears2.svg -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsAssetPlugin/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsAssetPlugin/config.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsAssetPlugin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsAssetPlugin/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsAssetPlugin/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsAssetPlugin/main.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsAssetPlugin/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsAssetPlugin/system.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsAssetPlugin/systemjs-asset-plugin/asset-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsAssetPlugin/systemjs-asset-plugin/asset-plugin.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsAssetPlugin/systemjs-asset-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsAssetPlugin/systemjs-asset-plugin/package.json -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsAssetPlugin/test-bar.txt: -------------------------------------------------------------------------------- 1 | contents of bar.txt! 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsAssetPlugin/test-foo.txt: -------------------------------------------------------------------------------- 1 | contents of foo.txt! 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/conditionalTemplate/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsConditionals/conditionalTemplate/config.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/conditionalTemplate/foo-rainy.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsConditionals/conditionalTemplate/foo-rainy.ko -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/conditionalTemplate/foo-sunny.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsConditionals/conditionalTemplate/foo-sunny.ko -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/conditionalTemplate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsConditionals/conditionalTemplate/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/conditionalTemplate/main.js: -------------------------------------------------------------------------------- 1 | require('foo-#{weather.js}.ko'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/conditionalTemplate/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsConditionals/conditionalTemplate/system.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/conditionalTemplate/systemjs-asset-plugin: -------------------------------------------------------------------------------- 1 | ../../../../node_modules/systemjs-asset-plugin/ -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/conditionalTemplate/tpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsConditionals/conditionalTemplate/tpl.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/conditionalTemplate/weather.js: -------------------------------------------------------------------------------- 1 | module.exports = Math.random() > .5 ? 'sunny' : 'rainy'; 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/locale/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsConditionals/locale/LICENSE -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/locale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsConditionals/locale/README.md -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/locale/alert-in-da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsConditionals/locale/alert-in-da.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/locale/alert-in-en_us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsConditionals/locale/alert-in-en_us.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/locale/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsConditionals/locale/config.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/locale/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsConditionals/locale/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/locale/locale.js: -------------------------------------------------------------------------------- 1 | module.exports = Math.random() > .5 ? 'da' : 'en_us'; 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/locale/main.js: -------------------------------------------------------------------------------- 1 | require('./alert-in-#{locale}.js'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/locale/neededInAllLanguages.js: -------------------------------------------------------------------------------- 1 | alert('needed in all languages'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/locale/neededInAmericanEnglish.js: -------------------------------------------------------------------------------- 1 | alert('needed in American English'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/locale/neededInDanish.js: -------------------------------------------------------------------------------- 1 | alert('needed in Danish'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/locale/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsConditionals/locale/system.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/localeJs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsConditionals/localeJs/LICENSE -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/localeJs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsConditionals/localeJs/README.md -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/localeJs/alert-in-da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsConditionals/localeJs/alert-in-da.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/localeJs/alert-in-en_us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsConditionals/localeJs/alert-in-en_us.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/localeJs/config.js: -------------------------------------------------------------------------------- 1 | System.config({ 2 | production: true 3 | }); 4 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/localeJs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsConditionals/localeJs/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/localeJs/locale.js: -------------------------------------------------------------------------------- 1 | module.exports = Math.random() > .5 ? 'da' : 'en_us'; 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/localeJs/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsConditionals/localeJs/main.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/localeJs/neededInAllLanguages.js: -------------------------------------------------------------------------------- 1 | alert('needed in all languages'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/localeJs/neededInAmericanEnglish.js: -------------------------------------------------------------------------------- 1 | alert('needed in American English'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/localeJs/neededInDanish.js: -------------------------------------------------------------------------------- 1 | alert('needed in Danish'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/localeJs/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsConditionals/localeJs/system.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/stylesheet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsConditionals/stylesheet/LICENSE -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/stylesheet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsConditionals/stylesheet/README.md -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/stylesheet/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsConditionals/stylesheet/config.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/stylesheet/css-builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsConditionals/stylesheet/css-builder.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/stylesheet/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsConditionals/stylesheet/css.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/stylesheet/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsConditionals/stylesheet/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/stylesheet/locale.js: -------------------------------------------------------------------------------- 1 | module.exports = Math.random() > .5 ? 'da' : 'en_us'; 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/stylesheet/main.js: -------------------------------------------------------------------------------- 1 | require('./styles.#{locale}.css!css.js'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/stylesheet/styles.da.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsConditionals/stylesheet/styles.da.css -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/stylesheet/styles.en_us.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsConditionals/stylesheet/styles.en_us.css -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/systemJsConditionals/stylesheet/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/systemJsConditionals/stylesheet/system.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/trailingWhitespaceInInlineScript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/trailingWhitespaceInInlineScript/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/webWorker/bar.js: -------------------------------------------------------------------------------- 1 | console.log('bar'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/webWorker/foo.js: -------------------------------------------------------------------------------- 1 | console.log('foo'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/webWorker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/webWorker/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/webWorker/quux.js: -------------------------------------------------------------------------------- 1 | console.log('quux'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/webWorker/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/webWorker/worker.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/webpack/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/webpack/index.html -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/webpack/jquery-1.10.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/webpack/jquery-1.10.1.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/webpack/jquery-1.10.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/webpack/jquery-1.10.1.min.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/webpack/jquery-1.10.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/webpack/jquery-1.10.1.min.map -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/webpack/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/webpack/main.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/webpack/noExistingSourceMap.js: -------------------------------------------------------------------------------- 1 | // Some comment 2 | 3 | alert('noExistingSourceMap'); 4 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/webpack/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/webpack/webpack.config.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/webpackSourceMaps/src/index.js: -------------------------------------------------------------------------------- 1 | alert('foo'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/webpackSourceMaps/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/webpackSourceMaps/webpack.config.js -------------------------------------------------------------------------------- /testdata/transforms/buildProduction/webpackSourceMaps/webroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/buildProduction/webpackSourceMaps/webroot/index.html -------------------------------------------------------------------------------- /testdata/transforms/cloneForEachConditionValue/noConditions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/cloneForEachConditionValue/noConditions/index.html -------------------------------------------------------------------------------- /testdata/transforms/cloneForEachConditionValue/singleCondition/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/cloneForEachConditionValue/singleCondition/index.html -------------------------------------------------------------------------------- /testdata/transforms/cloneForEachConditionValue/singleCondition/rainy.css: -------------------------------------------------------------------------------- 1 | html { 2 | background-color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /testdata/transforms/cloneForEachConditionValue/singleCondition/rainy.js: -------------------------------------------------------------------------------- 1 | alert('rainy'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/cloneForEachConditionValue/singleCondition/sunny.css: -------------------------------------------------------------------------------- 1 | html { 2 | background-color: yellow; 3 | } 4 | -------------------------------------------------------------------------------- /testdata/transforms/cloneForEachConditionValue/singleCondition/sunny.js: -------------------------------------------------------------------------------- 1 | alert('sunny'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/cloneForEachConditionValue/twoIndependentConditions/happy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/cloneForEachConditionValue/twoIndependentConditions/happy.css -------------------------------------------------------------------------------- /testdata/transforms/cloneForEachConditionValue/twoIndependentConditions/happy.js: -------------------------------------------------------------------------------- 1 | alert('happy'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/cloneForEachConditionValue/twoIndependentConditions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/cloneForEachConditionValue/twoIndependentConditions/index.html -------------------------------------------------------------------------------- /testdata/transforms/cloneForEachConditionValue/twoIndependentConditions/rainy.css: -------------------------------------------------------------------------------- 1 | html { 2 | background-color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /testdata/transforms/cloneForEachConditionValue/twoIndependentConditions/rainy.js: -------------------------------------------------------------------------------- 1 | alert('rainy'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/cloneForEachConditionValue/twoIndependentConditions/sad.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/cloneForEachConditionValue/twoIndependentConditions/sad.css -------------------------------------------------------------------------------- /testdata/transforms/cloneForEachConditionValue/twoIndependentConditions/sad.js: -------------------------------------------------------------------------------- 1 | alert('sad'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/cloneForEachConditionValue/twoIndependentConditions/sunny.css: -------------------------------------------------------------------------------- 1 | html { 2 | background-color: yellow; 3 | } 4 | -------------------------------------------------------------------------------- /testdata/transforms/cloneForEachConditionValue/twoIndependentConditions/sunny.js: -------------------------------------------------------------------------------- 1 | alert('sunny'); 2 | -------------------------------------------------------------------------------- /testdata/transforms/processImages/autoFalse/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/autoFalse/index.html -------------------------------------------------------------------------------- /testdata/transforms/processImages/autoFalse/purplealpha24bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/autoFalse/purplealpha24bit.png -------------------------------------------------------------------------------- /testdata/transforms/processImages/css/purplealpha24bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/css/purplealpha24bit.png -------------------------------------------------------------------------------- /testdata/transforms/processImages/css/redalpha24bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/css/redalpha24bit.png -------------------------------------------------------------------------------- /testdata/transforms/processImages/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/css/style.css -------------------------------------------------------------------------------- /testdata/transforms/processImages/devicePixelRatio/foo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/devicePixelRatio/foo.png -------------------------------------------------------------------------------- /testdata/transforms/processImages/devicePixelRatio/foo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/devicePixelRatio/foo@2x.png -------------------------------------------------------------------------------- /testdata/transforms/processImages/devicePixelRatio/foo@8x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/devicePixelRatio/foo@8x.png -------------------------------------------------------------------------------- /testdata/transforms/processImages/devicePixelRatio/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/devicePixelRatio/style.css -------------------------------------------------------------------------------- /testdata/transforms/processImages/dot.in.path/redalpha24bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/dot.in.path/redalpha24bit.png -------------------------------------------------------------------------------- /testdata/transforms/processImages/dot.in.path/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/dot.in.path/style.css -------------------------------------------------------------------------------- /testdata/transforms/processImages/gifsicle/animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/gifsicle/animated.gif -------------------------------------------------------------------------------- /testdata/transforms/processImages/gifsicle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/gifsicle/index.html -------------------------------------------------------------------------------- /testdata/transforms/processImages/gm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/gm/index.html -------------------------------------------------------------------------------- /testdata/transforms/processImages/gm/myImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/gm/myImage.png -------------------------------------------------------------------------------- /testdata/transforms/processImages/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/html/index.html -------------------------------------------------------------------------------- /testdata/transforms/processImages/html/myImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/html/myImage.png -------------------------------------------------------------------------------- /testdata/transforms/processImages/jpeg/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/jpeg/style.css -------------------------------------------------------------------------------- /testdata/transforms/processImages/jpeg/turtle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/jpeg/turtle.jpg -------------------------------------------------------------------------------- /testdata/transforms/processImages/pngs/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/pngs/photo.png -------------------------------------------------------------------------------- /testdata/transforms/processImages/pngs/purplealpha24bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/pngs/purplealpha24bit.png -------------------------------------------------------------------------------- /testdata/transforms/processImages/pngs/redalpha24bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/pngs/redalpha24bit.png -------------------------------------------------------------------------------- /testdata/transforms/processImages/pngs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/pngs/style.css -------------------------------------------------------------------------------- /testdata/transforms/processImages/setFormat/foo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/setFormat/foo.png -------------------------------------------------------------------------------- /testdata/transforms/processImages/setFormat/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-image: url(foo.png?setFormat=gif); 3 | } 4 | -------------------------------------------------------------------------------- /testdata/transforms/processImages/svg/addBogusElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/svg/addBogusElement.js -------------------------------------------------------------------------------- /testdata/transforms/processImages/svg/dialog-information.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/svg/dialog-information.svg -------------------------------------------------------------------------------- /testdata/transforms/processImages/svg/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/svg/index.html -------------------------------------------------------------------------------- /testdata/transforms/processImages/svgFilter/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/svgFilter/heart.svg -------------------------------------------------------------------------------- /testdata/transforms/processImages/svgFilter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/svgFilter/index.html -------------------------------------------------------------------------------- /testdata/transforms/processImages/svgFilter/myFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetgraph/assetgraph-builder/HEAD/testdata/transforms/processImages/svgFilter/myFilter.js --------------------------------------------------------------------------------