├── .github └── CONTRIBUTING.md ├── .gitignore ├── .jscsrc ├── .jshintrc ├── .travis.yml ├── LICENSE ├── README.md ├── dist ├── Markdown-License.text ├── Markdown.pl ├── README.md ├── dist-build.sh ├── dist-site.js ├── file.js ├── fonts │ ├── Inconsolata.ttf │ └── PT-Sans │ │ ├── PT_Sans.ttf │ │ ├── PT_Sans_Bold.ttf │ │ ├── PT_Sans_Bold_Italic.ttf │ │ ├── PT_Sans_Caption.ttf │ │ ├── PT_Sans_Caption_Bold.ttf │ │ ├── PT_Sans_Italic.ttf │ │ ├── PT_Sans_Narrow.ttf │ │ ├── PT_Sans_Narrow_Bold.ttf │ │ └── Paratype PT Sans Free Font License.txt ├── init.js ├── post.html └── pre.html ├── docs ├── api.html ├── commonjs.html ├── contributing.html ├── design │ └── packages.md ├── dojo.html ├── download.html ├── errors.html ├── faq-advanced.html ├── faq-optimization.html ├── faq.html ├── history.html ├── jquery.html ├── node.html ├── optimization.html ├── plugins.html ├── requirements.html ├── start.html ├── why.html └── whyamd.html ├── index.html ├── package.json ├── require.js ├── tasks.txt ├── testBaseUrl.js ├── tests ├── NAMESPACE.html ├── afterload.html ├── afterloadreadystate.js ├── all.js ├── anon │ ├── a.js │ ├── anon-tests.js │ ├── anonSimple.html │ ├── blue.js │ ├── c.js │ ├── green.js │ ├── magenta.js │ ├── message.txt │ ├── red.js │ ├── sub │ │ └── b.js │ └── yellow.js ├── bar ├── baseUrl.html ├── bundles │ ├── bundles-tests.js │ ├── bundles.html │ ├── main.js │ ├── second.js │ └── third.js ├── circular-tests.js ├── circular.html ├── circular │ ├── 414 │ │ ├── 414-tests.js │ │ ├── 414.html │ │ ├── A.js │ │ ├── B.js │ │ ├── C.js │ │ └── MyClass.js │ ├── a.js │ ├── b.js │ ├── c.js │ ├── circularPlugin-tests.js │ ├── circularPlugin.html │ ├── complexPlugin │ │ ├── complexPlugin-tests.js │ │ ├── complexPlugin.html │ │ ├── helper.js │ │ ├── main.js │ │ ├── slowText.js │ │ ├── toolbar.html │ │ ├── toolbar.js │ │ ├── viewport.html │ │ └── viewport.js │ ├── dupe │ │ ├── dupe.html │ │ ├── exported.js │ │ └── func.js │ ├── plugin.js │ └── transpiler │ │ ├── a.refine │ │ ├── b.refine │ │ ├── c.refine │ │ ├── d.refine │ │ ├── e.refine │ │ ├── transpiler-tests.js │ │ └── transpiler.html ├── cjsSpace │ ├── a.js │ ├── b.js │ ├── c.js │ ├── cjsDotRequire-tests.js │ ├── cjsDotRequire.html │ ├── cjsSpace-tests.js │ └── cjsSpace.html ├── commentParen │ ├── a.js │ ├── b.js │ └── commentParen.html ├── commonjs │ └── tests │ │ └── modules │ │ └── 1.0 │ │ ├── absolute │ │ ├── b.js │ │ ├── program.html │ │ ├── program.js │ │ ├── submodule │ │ │ └── a.js │ │ └── test.js │ │ ├── all.html │ │ ├── cyclic │ │ ├── a.js │ │ ├── b.js │ │ ├── program.html │ │ ├── program.js │ │ └── test.js │ │ ├── determinism │ │ ├── program.html │ │ ├── program.js │ │ ├── submodule │ │ │ ├── a.js │ │ │ └── b.js │ │ └── test.js │ │ ├── exactExports │ │ ├── a.js │ │ ├── program.html │ │ ├── program.js │ │ └── test.js │ │ ├── hasOwnProperty │ │ ├── method │ │ ├── a.js │ │ ├── program.html │ │ ├── program.js │ │ └── test.js │ │ ├── missing │ │ ├── program.html │ │ ├── program.js │ │ └── test.js │ │ ├── monkeys │ │ ├── a.js │ │ ├── program.html │ │ ├── program.js │ │ └── test.js │ │ ├── nested │ │ ├── a │ │ │ └── b │ │ │ │ └── c │ │ │ │ └── d.js │ │ ├── program.html │ │ ├── program.js │ │ └── test.js │ │ ├── relative │ │ ├── program.html │ │ ├── program.js │ │ ├── submodule │ │ │ ├── a.js │ │ │ └── b.js │ │ └── test.js │ │ ├── system.js │ │ ├── test.js │ │ └── transitive │ │ ├── a.js │ │ ├── b.js │ │ ├── c.js │ │ ├── program.html │ │ ├── program.js │ │ └── test.js ├── config.html ├── configRequirejs.html ├── dataMain │ ├── baseUrl │ │ ├── a.js │ │ ├── dataMainBaseUrl.html │ │ └── src │ │ │ └── main.js │ ├── dataMain.html │ ├── dataMain.js │ ├── dataMainIndex │ │ ├── dataMainIndex.html │ │ └── index.js │ ├── dataMainPlugin │ │ ├── dataMainPlugin.html │ │ ├── modules │ │ │ └── sub │ │ │ │ ├── a.js │ │ │ │ └── test.js │ │ └── my │ │ │ └── plugin.js │ └── skipDataMain │ │ ├── a.js │ │ ├── index.js │ │ └── skipDataMain.html ├── datauri │ └── datauri.html ├── defineDouble │ └── defineDouble.html ├── definedSpecified │ ├── a.js │ ├── b.js │ ├── definedSpecified-tests.js │ └── definedSpecified.html ├── delayedDefine │ ├── delayedDefine-tests.js │ └── delayedDefine.html ├── depEmpty.html ├── depoverlap.html ├── depoverlap.js ├── dimple.js ├── doh │ ├── LICENSE │ ├── README │ ├── _browserRunner.js │ ├── _nodeRunner.js │ ├── _rhinoRunner.js │ ├── _sounds │ │ ├── LICENSE │ │ ├── doh.wav │ │ ├── dohaaa.wav │ │ └── woohoo.wav │ ├── runner.html │ ├── runner.js │ ├── runner.sh │ └── small_logo.png ├── domReady │ ├── domReady-tests.js │ ├── domReady.html │ ├── domReadyExtraConfig-tests.js │ ├── domReadyExtraConfig.html │ ├── one.js │ └── two.js ├── dos.js ├── dotTrim │ ├── b.js │ ├── dotTrim-tests.js │ ├── dotTrim.html │ ├── spell.js │ ├── sub │ │ └── ext.js │ └── util │ │ └── helper.js ├── error │ ├── a.js │ ├── b.js │ ├── c.js │ ├── d.js │ ├── defineError.js │ ├── defineErrorLocal.html │ ├── doubleRequire │ │ ├── b.js │ │ ├── c.js │ │ └── doubleRequire.html │ ├── errorChild.html │ ├── errorContinue.html │ ├── errorContinueLocal.html │ ├── globalOnError.html │ ├── plug.js │ ├── pluginErrorContinue.html │ ├── pluginErrorContinueLocal.html │ └── requireErrback.html ├── exports │ ├── am.js │ ├── assign.js │ ├── assign2.js │ ├── bm.js │ ├── cm.js │ ├── exports-tests.js │ ├── exports.html │ ├── funcSet.js │ ├── implicitModule.js │ ├── moduleAndExports-tests.js │ ├── moduleAndExports.html │ ├── simpleReturn.js │ ├── usethis.js │ └── vanilla.js ├── foo ├── func.js ├── funcFour.js ├── funcOne.js ├── funcThree.js ├── funcTwo.js ├── hasOwnProperty ├── i18n │ ├── common.html │ ├── commonA.js │ ├── commonB.js │ ├── i18n.html │ ├── nls │ │ ├── colors.js │ │ ├── en-us-surfer │ │ │ └── colors.js │ │ └── fr │ │ │ └── colors.js │ └── testModule.js ├── index.html ├── isBrowser │ ├── a.js │ ├── isBrowser-tests.js │ └── isBrowser.html ├── issue379 │ ├── issue379.html │ └── issue379.js ├── jquery │ ├── jquery.html │ ├── jqueryDynamic.html │ ├── jqueryDynamic2.html │ └── scripts │ │ ├── app.js │ │ ├── dynamicApp.js │ │ ├── jquery-1.7.1.js │ │ ├── jquery-GPL-LICENSE.txt │ │ ├── jquery-MIT-LICENSE.txt │ │ ├── jquery.alpha.js │ │ ├── jquery.beta.js │ │ ├── jquery.epsilon.js │ │ └── jquery.gamma.js ├── jsonp │ ├── jsonp.html │ ├── lamp.js │ └── twitter.html ├── layers │ ├── build.sh │ ├── epsilon.js │ ├── helloWorld.txt │ ├── layer1.js │ └── layers.html ├── map.js ├── mapConfig │ ├── a1.js │ ├── a1 │ │ └── sub │ │ │ └── one.js │ ├── adapter │ │ └── d.js │ ├── another │ │ ├── c.js │ │ ├── c │ │ │ ├── dim.js │ │ │ └── sub.js │ │ └── minor.js │ ├── b.js │ ├── built │ │ ├── mapConfig-tests.js │ │ ├── mapConfigBuilt.html │ │ ├── mapConfigPlugin-tests.js │ │ ├── mapConfigPluginBuilt.html │ │ ├── mapConfigStar-tests.js │ │ ├── mapConfigStarAdapter-tests.js │ │ ├── mapConfigStarAdapterBuilt.html │ │ └── mapConfigStarBuilt.html │ ├── c.js │ ├── c │ │ └── sub.js │ ├── c1.js │ ├── c1 │ │ └── sub.js │ ├── c2.js │ ├── c2 │ │ └── sub.js │ ├── d.js │ ├── e.js │ ├── mapConfig-tests.js │ ├── mapConfig.html │ ├── mapConfigDelayed-tests.js │ ├── mapConfigDelayed.html │ ├── mapConfigMulti-tests.js │ ├── mapConfigMulti.html │ ├── mapConfigPlugin-tests.js │ ├── mapConfigPlugin.html │ ├── mapConfigRelative-tests.js │ ├── mapConfigRelative.html │ ├── mapConfigSpecificity-tests.js │ ├── mapConfigSpecificity.html │ ├── mapConfigStar-tests.js │ ├── mapConfigStar.html │ ├── mapConfigStarAdapter-tests.js │ ├── mapConfigStarAdapter.html │ ├── plug.js │ └── plug │ │ ├── c1.js │ │ ├── c2.js │ │ └── main.js ├── moduleConfig │ ├── a.js │ ├── b │ │ └── c.js │ ├── moduleConfig-tests.js │ ├── moduleConfig.html │ └── plain.js ├── moduleExports │ ├── adder.js │ └── moduleExports.html ├── multiversion.html ├── nestedDefine │ ├── four.js │ ├── nestedDefine.html │ ├── nestedDefine2.html │ ├── nestedDefine2.js │ ├── one.js │ └── two.js ├── nestedRelativeRequire │ ├── main.js │ ├── nestedRelativeRequire.html │ └── sub │ │ ├── a.js │ │ └── b.js ├── nestedRequire │ ├── a.js │ ├── base.js │ ├── nestedRequire-tests.js │ └── nestedRequire.html ├── nestedRequireConfig │ ├── nestedRequireConfig.html │ └── nestedRequireConfig.js ├── onResourceLoad │ ├── a.js │ ├── b.js │ ├── nestedRequire-tests.js │ └── nestedRequire.html ├── one.js ├── packages │ ├── bar │ │ └── 0.4 │ │ │ └── scripts │ │ │ └── main.js │ ├── baz │ │ └── lib │ │ │ ├── helper.js │ │ │ └── index.js │ ├── config │ │ ├── config.html │ │ └── pixie │ │ │ └── index.js │ ├── dojox │ │ ├── door.js │ │ └── window │ │ │ ├── pane.js │ │ │ └── window.js │ ├── foo │ │ └── lib │ │ │ ├── main.js │ │ │ └── second.js │ ├── funky │ │ ├── index.js │ │ └── lib │ │ │ └── monkey.js │ ├── optimizing │ │ ├── build.js │ │ ├── main.js │ │ ├── optimizing-built.html │ │ ├── optimizing.html │ │ └── packages │ │ │ ├── engine │ │ │ ├── main.js │ │ │ ├── pistons.js │ │ │ └── sparkplugs.js │ │ │ ├── fuel │ │ │ └── main.js │ │ │ └── tires │ │ │ └── main.js │ ├── packages-tests.js │ ├── packages.html │ ├── pkgs │ │ ├── alpha │ │ │ ├── main.js │ │ │ └── replace.js │ │ ├── beta │ │ │ └── 0.2 │ │ │ │ └── scripts │ │ │ │ ├── beta.js │ │ │ │ └── util.js │ │ └── dojox │ │ │ ├── chair │ │ │ ├── legs.js │ │ │ └── main.js │ │ │ └── table │ │ │ ├── legs.js │ │ │ └── table.js │ └── replace.js ├── packagesMultiLevel │ ├── @foo │ │ └── bar@1.0.0 │ │ │ ├── index.js │ │ │ └── other.js │ ├── baz@2.0.0 │ │ ├── helper.js │ │ └── index.js │ ├── build.js │ ├── config.js │ ├── expected-built.js │ ├── packagesMultiLevel-built.html │ ├── packagesMultiLevel-tests-built.js │ ├── packagesMultiLevel-tests.js │ └── packagesMultiLevel.html ├── packagesNestedMain │ ├── foo │ │ └── lib │ │ │ ├── bar.js │ │ │ └── index.js │ ├── packagesNestedMain-tests.js │ └── packagesNestedMain.html ├── packagesNode │ ├── node_modules │ │ └── foo │ │ │ └── lib │ │ │ ├── bar.js │ │ │ ├── baz.js │ │ │ └── index.js │ ├── packagesNode-tests.js │ └── packagesNode.html ├── packagesNodeAdapter │ ├── node_modules │ │ ├── foo.js │ │ └── foo │ │ │ └── lib │ │ │ ├── bar.js │ │ │ ├── baz.js │ │ │ └── index.js │ ├── packagesNodeAdapter-tests.js │ └── packagesNodeAdapter.html ├── pathArray │ ├── pathArray.html │ ├── pathArrayFail.html │ ├── real.js │ └── withMap │ │ ├── dep-private.js │ │ ├── real.js │ │ └── withMap.html ├── paths │ ├── first.js │ │ ├── first.js │ │ └── second.js │ ├── impl │ │ ├── array.js │ │ └── util.js │ ├── paths.html │ ├── relativeModuleId-tests.js │ ├── relativeModuleId.html │ ├── relativeNormalize │ │ ├── bar │ │ │ └── baz.js │ │ ├── foo2.js │ │ ├── relativeNormalize-tests.js │ │ └── relativeNormalize.html │ └── util.js ├── pluginNormalize │ └── pluginNormalize.html ├── pluginNormalizeLoad │ ├── Plugin.js │ └── pluginNormalizeLoad.html ├── plugins │ ├── a.js │ ├── b.js │ ├── c.js │ ├── complexNormalize │ │ ├── complexNormalize.html │ │ ├── main.js │ │ └── sub │ │ │ ├── modA1.js │ │ │ ├── modA2.js │ │ │ ├── plugin.js │ │ │ └── pluginDep.js │ ├── delegated │ │ ├── a.refine │ │ ├── delegated-tests.js │ │ ├── delegated.html │ │ └── delegated.js │ ├── double.html │ ├── double.js │ ├── earth.js │ ├── fromText │ │ ├── a.refine │ │ ├── b.refine │ │ ├── fromText-tests.js │ │ ├── fromText.html │ │ ├── fromTextConfig-tests.js │ │ ├── fromTextConfig.html │ │ └── refine.js │ ├── fromTextEvalError │ │ ├── a.refine │ │ ├── b.refine │ │ ├── fromTextEvalError-tests.js │ │ └── fromTextEvalError.html │ ├── fromTextNoDefine │ │ ├── a.refine │ │ ├── fromTextNoDefine-tests.js │ │ ├── fromTextNoDefine.html │ │ └── refine.js │ ├── index.js │ ├── indexBuilder.js │ ├── nameOnly-tests.js │ ├── nameOnly.html │ ├── nameOnly.js │ ├── onerror │ │ ├── onerror-tests.js │ │ ├── onerror.html │ │ └── thrower.js │ ├── pluginBundles │ │ ├── main.js │ │ ├── pluginBundles-tests.js │ │ └── pluginBundles.html │ ├── pluginBundlesSeparateText │ │ ├── main.js │ │ ├── pluginBundlesSeparateText-tests.js │ │ ├── pluginBundlesSeparateText.html │ │ └── second.html │ ├── pluginLast │ │ ├── app.js │ │ ├── bigCollection.html │ │ ├── bigCollection.js │ │ ├── collection.js │ │ ├── collectionHelper.js │ │ ├── common.js │ │ ├── component.html │ │ ├── component.js │ │ ├── main.js │ │ ├── pluginLast.html │ │ ├── specificCollection.html │ │ └── specificCollection.js │ ├── pluginMap │ │ ├── dynamic │ │ │ ├── application.js │ │ │ ├── employee.js │ │ │ ├── main.js │ │ │ ├── person.js │ │ │ ├── plugin.js │ │ │ └── pluginMapDynamic.html │ │ ├── pluginMap-tests.js │ │ └── pluginMap.html │ ├── pluginMapSameName │ │ ├── plugin │ │ │ └── plugin.js │ │ ├── pluginMapSameName-tests.js │ │ └── pluginMapSameName.html │ ├── pluginNormalize │ │ ├── modA.js │ │ ├── modB.js │ │ ├── pluginNormalize-tests.js │ │ └── pluginNormalize.html │ ├── pluginShim │ │ ├── a.refine │ │ ├── legacy.js │ │ ├── pluginShim-tests.js │ │ └── pluginShim.html │ ├── prime │ │ ├── a.js │ │ ├── b.js │ │ ├── c.js │ │ └── earth.js │ ├── sync-tests.js │ ├── sync.html │ └── textDepend │ │ ├── test.txt │ │ ├── textDepend-tests.js │ │ ├── textDepend.html │ │ └── textDepend.js ├── queryPath.html ├── relative │ ├── foo │ │ ├── bar.js │ │ ├── bar │ │ │ ├── message.txt │ │ │ ├── one.js │ │ │ └── two.js │ │ └── three.js │ ├── greek │ │ ├── alpha.js │ │ └── main.js │ ├── outsideBaseUrl │ │ ├── 2.js │ │ ├── a │ │ │ └── outsideBaseUrl.html │ │ └── b │ │ │ ├── 1.js │ │ │ └── 3.js │ ├── relative-tests.js │ ├── relative.html │ ├── relativeBaseUrl-tests.js │ ├── relativeBaseUrl.html │ └── top.js ├── remoteUrls │ ├── jqwrap.js │ ├── remoteUrls-tests.js │ ├── remoteUrls.html │ ├── util.js │ └── util2.js ├── requireAsync │ ├── requireAsync-tests.js │ └── requireAsync.html ├── requirePluginLoad │ ├── requirePluginLoad-tests.js │ └── requirePluginLoad.html ├── secondLateConfigPlugin │ ├── app │ │ └── lib_ │ │ │ ├── amd │ │ │ ├── nonamd.js │ │ │ └── text.js │ │ │ ├── jquery.foo.js │ │ │ └── jquery.js │ ├── plugin1_ko │ │ ├── A.js │ │ └── jquery.bar.js │ └── secondLateConfigPlugin.html ├── setTimeout-tests.js ├── setTimeout.html ├── shim │ ├── a.js │ ├── b.js │ ├── basic-tests.js │ ├── basic.html │ ├── built │ │ ├── basic-built.html │ │ └── basic-tests.js │ ├── c.js │ ├── d.js │ ├── e.js │ └── f.js ├── simple-badbase.html ├── simple-nohead.html ├── simple-tests.js ├── simple.html ├── simple.js ├── specialDeps │ ├── foo.js │ ├── specialDeps-tests.js │ └── specialDeps.html ├── text │ ├── local.js │ ├── plain.txt │ ├── resources │ │ ├── local.html │ │ └── sample.html │ ├── separate.js │ ├── subwidget.html │ ├── subwidget.js │ ├── subwidget2.html │ ├── text.html │ ├── textBuilt.html │ ├── textBuilt.js │ ├── textOnError.html │ ├── textOnXhr.html │ ├── textOnly.html │ ├── widget.html │ └── widget.js ├── toUrl │ ├── .hidden.html │ ├── auxil.html │ ├── main.html │ ├── main.js │ ├── sub │ │ ├── nested │ │ │ └── thing.js │ │ ├── noext │ │ ├── util.html │ │ └── util.js │ ├── toUrl-tests.js │ └── toUrl.html ├── trailingComma │ ├── a.js │ ├── trailingComma.html │ └── trailingComma.js ├── tres.js ├── two.js ├── undef │ ├── globalFoo.js │ ├── real.js │ ├── undef.html │ ├── undefEnforceShim.html │ ├── undefLocal.html │ ├── undefNoRequire.html │ └── undefNoRequire2.html ├── uniques │ ├── one.js │ ├── three.js │ ├── two.js │ └── uniques.html ├── universal │ ├── eye.js │ ├── newt.js │ ├── spell.js │ ├── tail.js │ ├── universal-built.html │ ├── universal-tests-built-expected.js │ ├── universal-tests-built.js │ ├── universal-tests.js │ └── universal.html ├── uno.js ├── unorderedDefine │ ├── app.js │ ├── bar.js │ └── unorderedDefine.html ├── urlArgsBlob.html ├── urlArgsToUrl.html ├── urlArgsToUrlFunction.html ├── urlfetch │ ├── one.js │ ├── three.js │ ├── two.js │ └── urlfetch.html ├── version1 │ ├── alpha.js │ ├── beta.js │ ├── gamma.js │ └── omega.js ├── version2 │ ├── alpha.js │ ├── beta.js │ ├── epsilon.js │ └── omega.js ├── workers.html └── workers.js └── updatesubs.sh /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/.gitignore -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/.jscsrc -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/README.md -------------------------------------------------------------------------------- /dist/Markdown-License.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/dist/Markdown-License.text -------------------------------------------------------------------------------- /dist/Markdown.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/dist/Markdown.pl -------------------------------------------------------------------------------- /dist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/dist/README.md -------------------------------------------------------------------------------- /dist/dist-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/dist/dist-build.sh -------------------------------------------------------------------------------- /dist/dist-site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/dist/dist-site.js -------------------------------------------------------------------------------- /dist/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/dist/file.js -------------------------------------------------------------------------------- /dist/fonts/Inconsolata.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/dist/fonts/Inconsolata.ttf -------------------------------------------------------------------------------- /dist/fonts/PT-Sans/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/dist/fonts/PT-Sans/PT_Sans.ttf -------------------------------------------------------------------------------- /dist/fonts/PT-Sans/PT_Sans_Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/dist/fonts/PT-Sans/PT_Sans_Bold.ttf -------------------------------------------------------------------------------- /dist/fonts/PT-Sans/PT_Sans_Bold_Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/dist/fonts/PT-Sans/PT_Sans_Bold_Italic.ttf -------------------------------------------------------------------------------- /dist/fonts/PT-Sans/PT_Sans_Caption.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/dist/fonts/PT-Sans/PT_Sans_Caption.ttf -------------------------------------------------------------------------------- /dist/fonts/PT-Sans/PT_Sans_Caption_Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/dist/fonts/PT-Sans/PT_Sans_Caption_Bold.ttf -------------------------------------------------------------------------------- /dist/fonts/PT-Sans/PT_Sans_Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/dist/fonts/PT-Sans/PT_Sans_Italic.ttf -------------------------------------------------------------------------------- /dist/fonts/PT-Sans/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/dist/fonts/PT-Sans/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /dist/fonts/PT-Sans/PT_Sans_Narrow_Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/dist/fonts/PT-Sans/PT_Sans_Narrow_Bold.ttf -------------------------------------------------------------------------------- /dist/fonts/PT-Sans/Paratype PT Sans Free Font License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/dist/fonts/PT-Sans/Paratype PT Sans Free Font License.txt -------------------------------------------------------------------------------- /dist/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/dist/init.js -------------------------------------------------------------------------------- /dist/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/dist/post.html -------------------------------------------------------------------------------- /dist/pre.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/dist/pre.html -------------------------------------------------------------------------------- /docs/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/docs/api.html -------------------------------------------------------------------------------- /docs/commonjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/docs/commonjs.html -------------------------------------------------------------------------------- /docs/contributing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/docs/contributing.html -------------------------------------------------------------------------------- /docs/design/packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/docs/design/packages.md -------------------------------------------------------------------------------- /docs/dojo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/docs/dojo.html -------------------------------------------------------------------------------- /docs/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/docs/download.html -------------------------------------------------------------------------------- /docs/errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/docs/errors.html -------------------------------------------------------------------------------- /docs/faq-advanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/docs/faq-advanced.html -------------------------------------------------------------------------------- /docs/faq-optimization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/docs/faq-optimization.html -------------------------------------------------------------------------------- /docs/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/docs/faq.html -------------------------------------------------------------------------------- /docs/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/docs/history.html -------------------------------------------------------------------------------- /docs/jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/docs/jquery.html -------------------------------------------------------------------------------- /docs/node.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/docs/node.html -------------------------------------------------------------------------------- /docs/optimization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/docs/optimization.html -------------------------------------------------------------------------------- /docs/plugins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/docs/plugins.html -------------------------------------------------------------------------------- /docs/requirements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/docs/requirements.html -------------------------------------------------------------------------------- /docs/start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/docs/start.html -------------------------------------------------------------------------------- /docs/why.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/docs/why.html -------------------------------------------------------------------------------- /docs/whyamd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/docs/whyamd.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/package.json -------------------------------------------------------------------------------- /require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/require.js -------------------------------------------------------------------------------- /tasks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tasks.txt -------------------------------------------------------------------------------- /testBaseUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/testBaseUrl.js -------------------------------------------------------------------------------- /tests/NAMESPACE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/NAMESPACE.html -------------------------------------------------------------------------------- /tests/afterload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/afterload.html -------------------------------------------------------------------------------- /tests/afterloadreadystate.js: -------------------------------------------------------------------------------- 1 | doh.is("complete", document.readyState); 2 | d.callback(true); 3 | -------------------------------------------------------------------------------- /tests/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/all.js -------------------------------------------------------------------------------- /tests/anon/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/anon/a.js -------------------------------------------------------------------------------- /tests/anon/anon-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/anon/anon-tests.js -------------------------------------------------------------------------------- /tests/anon/anonSimple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/anon/anonSimple.html -------------------------------------------------------------------------------- /tests/anon/blue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/anon/blue.js -------------------------------------------------------------------------------- /tests/anon/c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/anon/c.js -------------------------------------------------------------------------------- /tests/anon/green.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: "green" 3 | }); 4 | -------------------------------------------------------------------------------- /tests/anon/magenta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/anon/magenta.js -------------------------------------------------------------------------------- /tests/anon/message.txt: -------------------------------------------------------------------------------- 1 | hello world -------------------------------------------------------------------------------- /tests/anon/red.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/anon/red.js -------------------------------------------------------------------------------- /tests/anon/sub/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/anon/sub/b.js -------------------------------------------------------------------------------- /tests/anon/yellow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/anon/yellow.js -------------------------------------------------------------------------------- /tests/bar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/bar -------------------------------------------------------------------------------- /tests/baseUrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/baseUrl.html -------------------------------------------------------------------------------- /tests/bundles/bundles-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/bundles/bundles-tests.js -------------------------------------------------------------------------------- /tests/bundles/bundles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/bundles/bundles.html -------------------------------------------------------------------------------- /tests/bundles/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/bundles/main.js -------------------------------------------------------------------------------- /tests/bundles/second.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/bundles/second.js -------------------------------------------------------------------------------- /tests/bundles/third.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/bundles/third.js -------------------------------------------------------------------------------- /tests/circular-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular-tests.js -------------------------------------------------------------------------------- /tests/circular.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular.html -------------------------------------------------------------------------------- /tests/circular/414/414-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular/414/414-tests.js -------------------------------------------------------------------------------- /tests/circular/414/414.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular/414/414.html -------------------------------------------------------------------------------- /tests/circular/414/A.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular/414/A.js -------------------------------------------------------------------------------- /tests/circular/414/B.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular/414/B.js -------------------------------------------------------------------------------- /tests/circular/414/C.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular/414/C.js -------------------------------------------------------------------------------- /tests/circular/414/MyClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular/414/MyClass.js -------------------------------------------------------------------------------- /tests/circular/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular/a.js -------------------------------------------------------------------------------- /tests/circular/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular/b.js -------------------------------------------------------------------------------- /tests/circular/c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular/c.js -------------------------------------------------------------------------------- /tests/circular/circularPlugin-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular/circularPlugin-tests.js -------------------------------------------------------------------------------- /tests/circular/circularPlugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular/circularPlugin.html -------------------------------------------------------------------------------- /tests/circular/complexPlugin/complexPlugin-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular/complexPlugin/complexPlugin-tests.js -------------------------------------------------------------------------------- /tests/circular/complexPlugin/complexPlugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular/complexPlugin/complexPlugin.html -------------------------------------------------------------------------------- /tests/circular/complexPlugin/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular/complexPlugin/helper.js -------------------------------------------------------------------------------- /tests/circular/complexPlugin/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular/complexPlugin/main.js -------------------------------------------------------------------------------- /tests/circular/complexPlugin/slowText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular/complexPlugin/slowText.js -------------------------------------------------------------------------------- /tests/circular/complexPlugin/toolbar.html: -------------------------------------------------------------------------------- 1 | toolbarTemplate -------------------------------------------------------------------------------- /tests/circular/complexPlugin/toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular/complexPlugin/toolbar.js -------------------------------------------------------------------------------- /tests/circular/complexPlugin/viewport.html: -------------------------------------------------------------------------------- 1 | viewportTemplate -------------------------------------------------------------------------------- /tests/circular/complexPlugin/viewport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular/complexPlugin/viewport.js -------------------------------------------------------------------------------- /tests/circular/dupe/dupe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular/dupe/dupe.html -------------------------------------------------------------------------------- /tests/circular/dupe/exported.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular/dupe/exported.js -------------------------------------------------------------------------------- /tests/circular/dupe/func.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular/dupe/func.js -------------------------------------------------------------------------------- /tests/circular/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular/plugin.js -------------------------------------------------------------------------------- /tests/circular/transpiler/a.refine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular/transpiler/a.refine -------------------------------------------------------------------------------- /tests/circular/transpiler/b.refine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular/transpiler/b.refine -------------------------------------------------------------------------------- /tests/circular/transpiler/c.refine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular/transpiler/c.refine -------------------------------------------------------------------------------- /tests/circular/transpiler/d.refine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular/transpiler/d.refine -------------------------------------------------------------------------------- /tests/circular/transpiler/e.refine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular/transpiler/e.refine -------------------------------------------------------------------------------- /tests/circular/transpiler/transpiler-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular/transpiler/transpiler-tests.js -------------------------------------------------------------------------------- /tests/circular/transpiler/transpiler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/circular/transpiler/transpiler.html -------------------------------------------------------------------------------- /tests/cjsSpace/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/cjsSpace/a.js -------------------------------------------------------------------------------- /tests/cjsSpace/b.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'b' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/cjsSpace/c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/cjsSpace/c.js -------------------------------------------------------------------------------- /tests/cjsSpace/cjsDotRequire-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/cjsSpace/cjsDotRequire-tests.js -------------------------------------------------------------------------------- /tests/cjsSpace/cjsDotRequire.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/cjsSpace/cjsDotRequire.html -------------------------------------------------------------------------------- /tests/cjsSpace/cjsSpace-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/cjsSpace/cjsSpace-tests.js -------------------------------------------------------------------------------- /tests/cjsSpace/cjsSpace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/cjsSpace/cjsSpace.html -------------------------------------------------------------------------------- /tests/commentParen/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commentParen/a.js -------------------------------------------------------------------------------- /tests/commentParen/b.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'b' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/commentParen/commentParen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commentParen/commentParen.html -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/absolute/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/absolute/b.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/absolute/program.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/absolute/program.html -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/absolute/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/absolute/program.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/absolute/submodule/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/absolute/submodule/a.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/absolute/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/absolute/test.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/all.html -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/cyclic/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/cyclic/a.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/cyclic/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/cyclic/b.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/cyclic/program.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/cyclic/program.html -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/cyclic/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/cyclic/program.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/cyclic/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/cyclic/test.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/determinism/program.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/determinism/program.html -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/determinism/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/determinism/program.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/determinism/submodule/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/determinism/submodule/a.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/determinism/submodule/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/determinism/submodule/b.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/determinism/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/determinism/test.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/exactExports/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/exactExports/a.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/exactExports/program.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/exactExports/program.html -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/exactExports/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/exactExports/program.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/exactExports/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/exactExports/test.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/hasOwnProperty/hasOwnProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/hasOwnProperty/hasOwnProperty.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/hasOwnProperty/program.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/hasOwnProperty/program.html -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/hasOwnProperty/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/hasOwnProperty/program.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/hasOwnProperty/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/hasOwnProperty/test.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/hasOwnProperty/toString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/hasOwnProperty/toString.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/method/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/method/a.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/method/program.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/method/program.html -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/method/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/method/program.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/method/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/method/test.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/missing/program.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/missing/program.html -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/missing/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/missing/program.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/missing/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/missing/test.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/monkeys/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/monkeys/a.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/monkeys/program.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/monkeys/program.html -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/monkeys/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/monkeys/program.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/monkeys/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/monkeys/test.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/nested/a/b/c/d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/nested/a/b/c/d.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/nested/program.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/nested/program.html -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/nested/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/nested/program.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/nested/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/nested/test.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/relative/program.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/relative/program.html -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/relative/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/relative/program.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/relative/submodule/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/relative/submodule/a.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/relative/submodule/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/relative/submodule/b.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/relative/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/relative/test.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/system.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/test.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/transitive/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/transitive/a.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/transitive/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/transitive/b.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/transitive/c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/transitive/c.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/transitive/program.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/transitive/program.html -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/transitive/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/transitive/program.js -------------------------------------------------------------------------------- /tests/commonjs/tests/modules/1.0/transitive/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/commonjs/tests/modules/1.0/transitive/test.js -------------------------------------------------------------------------------- /tests/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/config.html -------------------------------------------------------------------------------- /tests/configRequirejs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/configRequirejs.html -------------------------------------------------------------------------------- /tests/dataMain/baseUrl/a.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'a' 3 | }); 4 | 5 | -------------------------------------------------------------------------------- /tests/dataMain/baseUrl/dataMainBaseUrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/dataMain/baseUrl/dataMainBaseUrl.html -------------------------------------------------------------------------------- /tests/dataMain/baseUrl/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/dataMain/baseUrl/src/main.js -------------------------------------------------------------------------------- /tests/dataMain/dataMain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/dataMain/dataMain.html -------------------------------------------------------------------------------- /tests/dataMain/dataMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/dataMain/dataMain.js -------------------------------------------------------------------------------- /tests/dataMain/dataMainIndex/dataMainIndex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/dataMain/dataMainIndex/dataMainIndex.html -------------------------------------------------------------------------------- /tests/dataMain/dataMainIndex/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/dataMain/dataMainIndex/index.js -------------------------------------------------------------------------------- /tests/dataMain/dataMainPlugin/dataMainPlugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/dataMain/dataMainPlugin/dataMainPlugin.html -------------------------------------------------------------------------------- /tests/dataMain/dataMainPlugin/modules/sub/a.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'a' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/dataMain/dataMainPlugin/modules/sub/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/dataMain/dataMainPlugin/modules/sub/test.js -------------------------------------------------------------------------------- /tests/dataMain/dataMainPlugin/my/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/dataMain/dataMainPlugin/my/plugin.js -------------------------------------------------------------------------------- /tests/dataMain/skipDataMain/a.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'a' 3 | }); 4 | 5 | -------------------------------------------------------------------------------- /tests/dataMain/skipDataMain/index.js: -------------------------------------------------------------------------------- 1 | define('index', ['a'], function (a) { 2 | a.modified = true; 3 | }); 4 | -------------------------------------------------------------------------------- /tests/dataMain/skipDataMain/skipDataMain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/dataMain/skipDataMain/skipDataMain.html -------------------------------------------------------------------------------- /tests/datauri/datauri.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/datauri/datauri.html -------------------------------------------------------------------------------- /tests/defineDouble/defineDouble.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/defineDouble/defineDouble.html -------------------------------------------------------------------------------- /tests/definedSpecified/a.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'a' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/definedSpecified/b.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'b' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/definedSpecified/definedSpecified-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/definedSpecified/definedSpecified-tests.js -------------------------------------------------------------------------------- /tests/definedSpecified/definedSpecified.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/definedSpecified/definedSpecified.html -------------------------------------------------------------------------------- /tests/delayedDefine/delayedDefine-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/delayedDefine/delayedDefine-tests.js -------------------------------------------------------------------------------- /tests/delayedDefine/delayedDefine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/delayedDefine/delayedDefine.html -------------------------------------------------------------------------------- /tests/depEmpty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/depEmpty.html -------------------------------------------------------------------------------- /tests/depoverlap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/depoverlap.html -------------------------------------------------------------------------------- /tests/depoverlap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/depoverlap.js -------------------------------------------------------------------------------- /tests/dimple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/dimple.js -------------------------------------------------------------------------------- /tests/doh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/doh/LICENSE -------------------------------------------------------------------------------- /tests/doh/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/doh/README -------------------------------------------------------------------------------- /tests/doh/_browserRunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/doh/_browserRunner.js -------------------------------------------------------------------------------- /tests/doh/_nodeRunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/doh/_nodeRunner.js -------------------------------------------------------------------------------- /tests/doh/_rhinoRunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/doh/_rhinoRunner.js -------------------------------------------------------------------------------- /tests/doh/_sounds/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/doh/_sounds/LICENSE -------------------------------------------------------------------------------- /tests/doh/_sounds/doh.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/doh/_sounds/doh.wav -------------------------------------------------------------------------------- /tests/doh/_sounds/dohaaa.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/doh/_sounds/dohaaa.wav -------------------------------------------------------------------------------- /tests/doh/_sounds/woohoo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/doh/_sounds/woohoo.wav -------------------------------------------------------------------------------- /tests/doh/runner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/doh/runner.html -------------------------------------------------------------------------------- /tests/doh/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/doh/runner.js -------------------------------------------------------------------------------- /tests/doh/runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/doh/runner.sh -------------------------------------------------------------------------------- /tests/doh/small_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/doh/small_logo.png -------------------------------------------------------------------------------- /tests/domReady/domReady-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/domReady/domReady-tests.js -------------------------------------------------------------------------------- /tests/domReady/domReady.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/domReady/domReady.html -------------------------------------------------------------------------------- /tests/domReady/domReadyExtraConfig-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/domReady/domReadyExtraConfig-tests.js -------------------------------------------------------------------------------- /tests/domReady/domReadyExtraConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/domReady/domReadyExtraConfig.html -------------------------------------------------------------------------------- /tests/domReady/one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/domReady/one.js -------------------------------------------------------------------------------- /tests/domReady/two.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/domReady/two.js -------------------------------------------------------------------------------- /tests/dos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/dos.js -------------------------------------------------------------------------------- /tests/dotTrim/b.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'b' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/dotTrim/dotTrim-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/dotTrim/dotTrim-tests.js -------------------------------------------------------------------------------- /tests/dotTrim/dotTrim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/dotTrim/dotTrim.html -------------------------------------------------------------------------------- /tests/dotTrim/spell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/dotTrim/spell.js -------------------------------------------------------------------------------- /tests/dotTrim/sub/ext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/dotTrim/sub/ext.js -------------------------------------------------------------------------------- /tests/dotTrim/util/helper.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'helper' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/error/a.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'a' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/error/b.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'b' 3 | }); 4 | 5 | -------------------------------------------------------------------------------- /tests/error/c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/error/c.js -------------------------------------------------------------------------------- /tests/error/d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/error/d.js -------------------------------------------------------------------------------- /tests/error/defineError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/error/defineError.js -------------------------------------------------------------------------------- /tests/error/defineErrorLocal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/error/defineErrorLocal.html -------------------------------------------------------------------------------- /tests/error/doubleRequire/b.js: -------------------------------------------------------------------------------- 1 | define(['myShim'], function (broken) { 2 | return { name: 'b' }; 3 | }); 4 | -------------------------------------------------------------------------------- /tests/error/doubleRequire/c.js: -------------------------------------------------------------------------------- 1 | define(['myShim'], function (broken) { 2 | return { name: 'c' }; 3 | }); 4 | -------------------------------------------------------------------------------- /tests/error/doubleRequire/doubleRequire.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/error/doubleRequire/doubleRequire.html -------------------------------------------------------------------------------- /tests/error/errorChild.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/error/errorChild.html -------------------------------------------------------------------------------- /tests/error/errorContinue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/error/errorContinue.html -------------------------------------------------------------------------------- /tests/error/errorContinueLocal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/error/errorContinueLocal.html -------------------------------------------------------------------------------- /tests/error/globalOnError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/error/globalOnError.html -------------------------------------------------------------------------------- /tests/error/plug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/error/plug.js -------------------------------------------------------------------------------- /tests/error/pluginErrorContinue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/error/pluginErrorContinue.html -------------------------------------------------------------------------------- /tests/error/pluginErrorContinueLocal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/error/pluginErrorContinueLocal.html -------------------------------------------------------------------------------- /tests/error/requireErrback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/error/requireErrback.html -------------------------------------------------------------------------------- /tests/exports/am.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/exports/am.js -------------------------------------------------------------------------------- /tests/exports/assign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/exports/assign.js -------------------------------------------------------------------------------- /tests/exports/assign2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/exports/assign2.js -------------------------------------------------------------------------------- /tests/exports/bm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/exports/bm.js -------------------------------------------------------------------------------- /tests/exports/cm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/exports/cm.js -------------------------------------------------------------------------------- /tests/exports/exports-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/exports/exports-tests.js -------------------------------------------------------------------------------- /tests/exports/exports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/exports/exports.html -------------------------------------------------------------------------------- /tests/exports/funcSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/exports/funcSet.js -------------------------------------------------------------------------------- /tests/exports/implicitModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/exports/implicitModule.js -------------------------------------------------------------------------------- /tests/exports/moduleAndExports-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/exports/moduleAndExports-tests.js -------------------------------------------------------------------------------- /tests/exports/moduleAndExports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/exports/moduleAndExports.html -------------------------------------------------------------------------------- /tests/exports/simpleReturn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/exports/simpleReturn.js -------------------------------------------------------------------------------- /tests/exports/usethis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/exports/usethis.js -------------------------------------------------------------------------------- /tests/exports/vanilla.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/exports/vanilla.js -------------------------------------------------------------------------------- /tests/foo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/foo -------------------------------------------------------------------------------- /tests/func.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/func.js -------------------------------------------------------------------------------- /tests/funcFour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/funcFour.js -------------------------------------------------------------------------------- /tests/funcOne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/funcOne.js -------------------------------------------------------------------------------- /tests/funcThree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/funcThree.js -------------------------------------------------------------------------------- /tests/funcTwo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/funcTwo.js -------------------------------------------------------------------------------- /tests/hasOwnProperty/hasOwnProperty-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/hasOwnProperty/hasOwnProperty-tests.js -------------------------------------------------------------------------------- /tests/hasOwnProperty/hasOwnProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/hasOwnProperty/hasOwnProperty.html -------------------------------------------------------------------------------- /tests/hasOwnProperty/hasOwnProperty.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'hasOwnProperty' 3 | }); -------------------------------------------------------------------------------- /tests/hasOwnProperty/prototype.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'prototype' 3 | }); -------------------------------------------------------------------------------- /tests/hasOwnProperty/toString.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'toString' 3 | }); -------------------------------------------------------------------------------- /tests/i18n/common.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/i18n/common.html -------------------------------------------------------------------------------- /tests/i18n/commonA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/i18n/commonA.js -------------------------------------------------------------------------------- /tests/i18n/commonB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/i18n/commonB.js -------------------------------------------------------------------------------- /tests/i18n/i18n.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/i18n/i18n.html -------------------------------------------------------------------------------- /tests/i18n/nls/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/i18n/nls/colors.js -------------------------------------------------------------------------------- /tests/i18n/nls/en-us-surfer/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/i18n/nls/en-us-surfer/colors.js -------------------------------------------------------------------------------- /tests/i18n/nls/fr/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/i18n/nls/fr/colors.js -------------------------------------------------------------------------------- /tests/i18n/testModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/i18n/testModule.js -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/isBrowser/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/isBrowser/a.js -------------------------------------------------------------------------------- /tests/isBrowser/isBrowser-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/isBrowser/isBrowser-tests.js -------------------------------------------------------------------------------- /tests/isBrowser/isBrowser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/isBrowser/isBrowser.html -------------------------------------------------------------------------------- /tests/issue379/issue379.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/issue379/issue379.html -------------------------------------------------------------------------------- /tests/issue379/issue379.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/issue379/issue379.js -------------------------------------------------------------------------------- /tests/jquery/jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/jquery/jquery.html -------------------------------------------------------------------------------- /tests/jquery/jqueryDynamic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/jquery/jqueryDynamic.html -------------------------------------------------------------------------------- /tests/jquery/jqueryDynamic2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/jquery/jqueryDynamic2.html -------------------------------------------------------------------------------- /tests/jquery/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/jquery/scripts/app.js -------------------------------------------------------------------------------- /tests/jquery/scripts/dynamicApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/jquery/scripts/dynamicApp.js -------------------------------------------------------------------------------- /tests/jquery/scripts/jquery-1.7.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/jquery/scripts/jquery-1.7.1.js -------------------------------------------------------------------------------- /tests/jquery/scripts/jquery-GPL-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/jquery/scripts/jquery-GPL-LICENSE.txt -------------------------------------------------------------------------------- /tests/jquery/scripts/jquery-MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/jquery/scripts/jquery-MIT-LICENSE.txt -------------------------------------------------------------------------------- /tests/jquery/scripts/jquery.alpha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/jquery/scripts/jquery.alpha.js -------------------------------------------------------------------------------- /tests/jquery/scripts/jquery.beta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/jquery/scripts/jquery.beta.js -------------------------------------------------------------------------------- /tests/jquery/scripts/jquery.epsilon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/jquery/scripts/jquery.epsilon.js -------------------------------------------------------------------------------- /tests/jquery/scripts/jquery.gamma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/jquery/scripts/jquery.gamma.js -------------------------------------------------------------------------------- /tests/jsonp/jsonp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/jsonp/jsonp.html -------------------------------------------------------------------------------- /tests/jsonp/lamp.js: -------------------------------------------------------------------------------- 1 | define("lamp", { 2 | color: "blue" 3 | }); 4 | -------------------------------------------------------------------------------- /tests/jsonp/twitter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/jsonp/twitter.html -------------------------------------------------------------------------------- /tests/layers/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/layers/build.sh -------------------------------------------------------------------------------- /tests/layers/epsilon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/layers/epsilon.js -------------------------------------------------------------------------------- /tests/layers/helloWorld.txt: -------------------------------------------------------------------------------- 1 | hello world -------------------------------------------------------------------------------- /tests/layers/layer1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/layers/layer1.js -------------------------------------------------------------------------------- /tests/layers/layers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/layers/layers.html -------------------------------------------------------------------------------- /tests/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/map.js -------------------------------------------------------------------------------- /tests/mapConfig/a1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/a1.js -------------------------------------------------------------------------------- /tests/mapConfig/a1/sub/one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/a1/sub/one.js -------------------------------------------------------------------------------- /tests/mapConfig/adapter/d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/adapter/d.js -------------------------------------------------------------------------------- /tests/mapConfig/another/c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/another/c.js -------------------------------------------------------------------------------- /tests/mapConfig/another/c/dim.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'another/c/dim' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/mapConfig/another/c/sub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/another/c/sub.js -------------------------------------------------------------------------------- /tests/mapConfig/another/minor.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'another/minor' 3 | }); 4 | 5 | -------------------------------------------------------------------------------- /tests/mapConfig/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/b.js -------------------------------------------------------------------------------- /tests/mapConfig/built/mapConfig-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/built/mapConfig-tests.js -------------------------------------------------------------------------------- /tests/mapConfig/built/mapConfigBuilt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/built/mapConfigBuilt.html -------------------------------------------------------------------------------- /tests/mapConfig/built/mapConfigPlugin-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/built/mapConfigPlugin-tests.js -------------------------------------------------------------------------------- /tests/mapConfig/built/mapConfigPluginBuilt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/built/mapConfigPluginBuilt.html -------------------------------------------------------------------------------- /tests/mapConfig/built/mapConfigStar-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/built/mapConfigStar-tests.js -------------------------------------------------------------------------------- /tests/mapConfig/built/mapConfigStarAdapter-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/built/mapConfigStarAdapter-tests.js -------------------------------------------------------------------------------- /tests/mapConfig/built/mapConfigStarAdapterBuilt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/built/mapConfigStarAdapterBuilt.html -------------------------------------------------------------------------------- /tests/mapConfig/built/mapConfigStarBuilt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/built/mapConfigStarBuilt.html -------------------------------------------------------------------------------- /tests/mapConfig/c.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'c' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/mapConfig/c/sub.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'c/sub' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/mapConfig/c1.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'c1' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/mapConfig/c1/sub.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'c1/sub' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/mapConfig/c2.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'c2' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/mapConfig/c2/sub.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'c2/sub' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/mapConfig/d.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'd' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/mapConfig/e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/e.js -------------------------------------------------------------------------------- /tests/mapConfig/mapConfig-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/mapConfig-tests.js -------------------------------------------------------------------------------- /tests/mapConfig/mapConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/mapConfig.html -------------------------------------------------------------------------------- /tests/mapConfig/mapConfigDelayed-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/mapConfigDelayed-tests.js -------------------------------------------------------------------------------- /tests/mapConfig/mapConfigDelayed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/mapConfigDelayed.html -------------------------------------------------------------------------------- /tests/mapConfig/mapConfigMulti-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/mapConfigMulti-tests.js -------------------------------------------------------------------------------- /tests/mapConfig/mapConfigMulti.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/mapConfigMulti.html -------------------------------------------------------------------------------- /tests/mapConfig/mapConfigPlugin-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/mapConfigPlugin-tests.js -------------------------------------------------------------------------------- /tests/mapConfig/mapConfigPlugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/mapConfigPlugin.html -------------------------------------------------------------------------------- /tests/mapConfig/mapConfigRelative-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/mapConfigRelative-tests.js -------------------------------------------------------------------------------- /tests/mapConfig/mapConfigRelative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/mapConfigRelative.html -------------------------------------------------------------------------------- /tests/mapConfig/mapConfigSpecificity-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/mapConfigSpecificity-tests.js -------------------------------------------------------------------------------- /tests/mapConfig/mapConfigSpecificity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/mapConfigSpecificity.html -------------------------------------------------------------------------------- /tests/mapConfig/mapConfigStar-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/mapConfigStar-tests.js -------------------------------------------------------------------------------- /tests/mapConfig/mapConfigStar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/mapConfigStar.html -------------------------------------------------------------------------------- /tests/mapConfig/mapConfigStarAdapter-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/mapConfigStarAdapter-tests.js -------------------------------------------------------------------------------- /tests/mapConfig/mapConfigStarAdapter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/mapConfigStarAdapter.html -------------------------------------------------------------------------------- /tests/mapConfig/plug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/mapConfig/plug.js -------------------------------------------------------------------------------- /tests/mapConfig/plug/c1.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'plug!c1' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/mapConfig/plug/c2.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'plug!c2' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/mapConfig/plug/main.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'plug!main' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/moduleConfig/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/moduleConfig/a.js -------------------------------------------------------------------------------- /tests/moduleConfig/b/c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/moduleConfig/b/c.js -------------------------------------------------------------------------------- /tests/moduleConfig/moduleConfig-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/moduleConfig/moduleConfig-tests.js -------------------------------------------------------------------------------- /tests/moduleConfig/moduleConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/moduleConfig/moduleConfig.html -------------------------------------------------------------------------------- /tests/moduleConfig/plain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/moduleConfig/plain.js -------------------------------------------------------------------------------- /tests/moduleExports/adder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/moduleExports/adder.js -------------------------------------------------------------------------------- /tests/moduleExports/moduleExports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/moduleExports/moduleExports.html -------------------------------------------------------------------------------- /tests/multiversion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/multiversion.html -------------------------------------------------------------------------------- /tests/nestedDefine/four.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/nestedDefine/four.js -------------------------------------------------------------------------------- /tests/nestedDefine/nestedDefine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/nestedDefine/nestedDefine.html -------------------------------------------------------------------------------- /tests/nestedDefine/nestedDefine2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/nestedDefine/nestedDefine2.html -------------------------------------------------------------------------------- /tests/nestedDefine/nestedDefine2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/nestedDefine/nestedDefine2.js -------------------------------------------------------------------------------- /tests/nestedDefine/one.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'one' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/nestedDefine/two.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'two' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/nestedRelativeRequire/main.js: -------------------------------------------------------------------------------- 1 | require(['sub/a']); 2 | -------------------------------------------------------------------------------- /tests/nestedRelativeRequire/nestedRelativeRequire.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/nestedRelativeRequire/nestedRelativeRequire.html -------------------------------------------------------------------------------- /tests/nestedRelativeRequire/sub/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/nestedRelativeRequire/sub/a.js -------------------------------------------------------------------------------- /tests/nestedRelativeRequire/sub/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/nestedRelativeRequire/sub/b.js -------------------------------------------------------------------------------- /tests/nestedRequire/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/nestedRequire/a.js -------------------------------------------------------------------------------- /tests/nestedRequire/base.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'base' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/nestedRequire/nestedRequire-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/nestedRequire/nestedRequire-tests.js -------------------------------------------------------------------------------- /tests/nestedRequire/nestedRequire.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/nestedRequire/nestedRequire.html -------------------------------------------------------------------------------- /tests/nestedRequireConfig/nestedRequireConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/nestedRequireConfig/nestedRequireConfig.html -------------------------------------------------------------------------------- /tests/nestedRequireConfig/nestedRequireConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/nestedRequireConfig/nestedRequireConfig.js -------------------------------------------------------------------------------- /tests/onResourceLoad/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/onResourceLoad/a.js -------------------------------------------------------------------------------- /tests/onResourceLoad/b.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'b' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/onResourceLoad/nestedRequire-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/onResourceLoad/nestedRequire-tests.js -------------------------------------------------------------------------------- /tests/onResourceLoad/nestedRequire.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/onResourceLoad/nestedRequire.html -------------------------------------------------------------------------------- /tests/one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/one.js -------------------------------------------------------------------------------- /tests/packages/bar/0.4/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packages/bar/0.4/scripts/main.js -------------------------------------------------------------------------------- /tests/packages/baz/lib/helper.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: "baz/helper" 3 | }); 4 | -------------------------------------------------------------------------------- /tests/packages/baz/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packages/baz/lib/index.js -------------------------------------------------------------------------------- /tests/packages/config/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packages/config/config.html -------------------------------------------------------------------------------- /tests/packages/config/pixie/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packages/config/pixie/index.js -------------------------------------------------------------------------------- /tests/packages/dojox/door.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'dojox/door' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/packages/dojox/window/pane.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'dojox/window/pane' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/packages/dojox/window/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packages/dojox/window/window.js -------------------------------------------------------------------------------- /tests/packages/foo/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packages/foo/lib/main.js -------------------------------------------------------------------------------- /tests/packages/foo/lib/second.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'foo/second' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/packages/funky/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packages/funky/index.js -------------------------------------------------------------------------------- /tests/packages/funky/lib/monkey.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'monkey' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/packages/optimizing/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packages/optimizing/build.js -------------------------------------------------------------------------------- /tests/packages/optimizing/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packages/optimizing/main.js -------------------------------------------------------------------------------- /tests/packages/optimizing/optimizing-built.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packages/optimizing/optimizing-built.html -------------------------------------------------------------------------------- /tests/packages/optimizing/optimizing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packages/optimizing/optimizing.html -------------------------------------------------------------------------------- /tests/packages/optimizing/packages/engine/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packages/optimizing/packages/engine/main.js -------------------------------------------------------------------------------- /tests/packages/optimizing/packages/engine/pistons.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'pistons' 3 | }); -------------------------------------------------------------------------------- /tests/packages/optimizing/packages/engine/sparkplugs.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'sparkplugs' 3 | }); -------------------------------------------------------------------------------- /tests/packages/optimizing/packages/fuel/main.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'fuel' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/packages/optimizing/packages/tires/main.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'tires' 3 | }); -------------------------------------------------------------------------------- /tests/packages/packages-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packages/packages-tests.js -------------------------------------------------------------------------------- /tests/packages/packages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packages/packages.html -------------------------------------------------------------------------------- /tests/packages/pkgs/alpha/main.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'alpha' 3 | }); -------------------------------------------------------------------------------- /tests/packages/pkgs/alpha/replace.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'alpha/replace' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/packages/pkgs/beta/0.2/scripts/beta.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | return 'beta'; 3 | }); 4 | -------------------------------------------------------------------------------- /tests/packages/pkgs/beta/0.2/scripts/util.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'beta/util' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/packages/pkgs/dojox/chair/legs.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'dojox/chair/legs' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/packages/pkgs/dojox/chair/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packages/pkgs/dojox/chair/main.js -------------------------------------------------------------------------------- /tests/packages/pkgs/dojox/table/legs.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'dojox/table/legs' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/packages/pkgs/dojox/table/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packages/pkgs/dojox/table/table.js -------------------------------------------------------------------------------- /tests/packages/replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packages/replace.js -------------------------------------------------------------------------------- /tests/packagesMultiLevel/@foo/bar@1.0.0/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packagesMultiLevel/@foo/bar@1.0.0/index.js -------------------------------------------------------------------------------- /tests/packagesMultiLevel/@foo/bar@1.0.0/other.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'other' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/packagesMultiLevel/baz@2.0.0/helper.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'helper' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/packagesMultiLevel/baz@2.0.0/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packagesMultiLevel/baz@2.0.0/index.js -------------------------------------------------------------------------------- /tests/packagesMultiLevel/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packagesMultiLevel/build.js -------------------------------------------------------------------------------- /tests/packagesMultiLevel/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packagesMultiLevel/config.js -------------------------------------------------------------------------------- /tests/packagesMultiLevel/expected-built.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packagesMultiLevel/expected-built.js -------------------------------------------------------------------------------- /tests/packagesMultiLevel/packagesMultiLevel-built.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packagesMultiLevel/packagesMultiLevel-built.html -------------------------------------------------------------------------------- /tests/packagesMultiLevel/packagesMultiLevel-tests-built.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packagesMultiLevel/packagesMultiLevel-tests-built.js -------------------------------------------------------------------------------- /tests/packagesMultiLevel/packagesMultiLevel-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packagesMultiLevel/packagesMultiLevel-tests.js -------------------------------------------------------------------------------- /tests/packagesMultiLevel/packagesMultiLevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packagesMultiLevel/packagesMultiLevel.html -------------------------------------------------------------------------------- /tests/packagesNestedMain/foo/lib/bar.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'bar' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/packagesNestedMain/foo/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packagesNestedMain/foo/lib/index.js -------------------------------------------------------------------------------- /tests/packagesNestedMain/packagesNestedMain-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packagesNestedMain/packagesNestedMain-tests.js -------------------------------------------------------------------------------- /tests/packagesNestedMain/packagesNestedMain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packagesNestedMain/packagesNestedMain.html -------------------------------------------------------------------------------- /tests/packagesNode/node_modules/foo/lib/bar.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'bar' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/packagesNode/node_modules/foo/lib/baz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packagesNode/node_modules/foo/lib/baz.js -------------------------------------------------------------------------------- /tests/packagesNode/node_modules/foo/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packagesNode/node_modules/foo/lib/index.js -------------------------------------------------------------------------------- /tests/packagesNode/packagesNode-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packagesNode/packagesNode-tests.js -------------------------------------------------------------------------------- /tests/packagesNode/packagesNode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packagesNode/packagesNode.html -------------------------------------------------------------------------------- /tests/packagesNodeAdapter/node_modules/foo.js: -------------------------------------------------------------------------------- 1 | define(['foo/lib/index'], function (m) { return m; }); 2 | -------------------------------------------------------------------------------- /tests/packagesNodeAdapter/node_modules/foo/lib/bar.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'bar' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/packagesNodeAdapter/node_modules/foo/lib/baz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packagesNodeAdapter/node_modules/foo/lib/baz.js -------------------------------------------------------------------------------- /tests/packagesNodeAdapter/node_modules/foo/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packagesNodeAdapter/node_modules/foo/lib/index.js -------------------------------------------------------------------------------- /tests/packagesNodeAdapter/packagesNodeAdapter-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packagesNodeAdapter/packagesNodeAdapter-tests.js -------------------------------------------------------------------------------- /tests/packagesNodeAdapter/packagesNodeAdapter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/packagesNodeAdapter/packagesNodeAdapter.html -------------------------------------------------------------------------------- /tests/pathArray/pathArray.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/pathArray/pathArray.html -------------------------------------------------------------------------------- /tests/pathArray/pathArrayFail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/pathArray/pathArrayFail.html -------------------------------------------------------------------------------- /tests/pathArray/real.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'real' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/pathArray/withMap/dep-private.js: -------------------------------------------------------------------------------- 1 | define(['dep'], function(d) { 2 | return d; 3 | }); 4 | -------------------------------------------------------------------------------- /tests/pathArray/withMap/real.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'real' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/pathArray/withMap/withMap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/pathArray/withMap/withMap.html -------------------------------------------------------------------------------- /tests/paths/first.js/first.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/paths/first.js/first.js -------------------------------------------------------------------------------- /tests/paths/first.js/second.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/paths/first.js/second.js -------------------------------------------------------------------------------- /tests/paths/impl/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/paths/impl/array.js -------------------------------------------------------------------------------- /tests/paths/impl/util.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'impl/util' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/paths/paths.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/paths/paths.html -------------------------------------------------------------------------------- /tests/paths/relativeModuleId-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/paths/relativeModuleId-tests.js -------------------------------------------------------------------------------- /tests/paths/relativeModuleId.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/paths/relativeModuleId.html -------------------------------------------------------------------------------- /tests/paths/relativeNormalize/bar/baz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/paths/relativeNormalize/bar/baz.js -------------------------------------------------------------------------------- /tests/paths/relativeNormalize/foo2.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'foo2' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/paths/relativeNormalize/relativeNormalize-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/paths/relativeNormalize/relativeNormalize-tests.js -------------------------------------------------------------------------------- /tests/paths/relativeNormalize/relativeNormalize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/paths/relativeNormalize/relativeNormalize.html -------------------------------------------------------------------------------- /tests/paths/util.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'util' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/pluginNormalize/pluginNormalize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/pluginNormalize/pluginNormalize.html -------------------------------------------------------------------------------- /tests/pluginNormalizeLoad/Plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/pluginNormalizeLoad/Plugin.js -------------------------------------------------------------------------------- /tests/pluginNormalizeLoad/pluginNormalizeLoad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/pluginNormalizeLoad/pluginNormalizeLoad.html -------------------------------------------------------------------------------- /tests/plugins/a.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'a' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/plugins/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/b.js -------------------------------------------------------------------------------- /tests/plugins/c.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: "c" 3 | }); 4 | -------------------------------------------------------------------------------- /tests/plugins/complexNormalize/complexNormalize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/complexNormalize/complexNormalize.html -------------------------------------------------------------------------------- /tests/plugins/complexNormalize/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/complexNormalize/main.js -------------------------------------------------------------------------------- /tests/plugins/complexNormalize/sub/modA1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/complexNormalize/sub/modA1.js -------------------------------------------------------------------------------- /tests/plugins/complexNormalize/sub/modA2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/complexNormalize/sub/modA2.js -------------------------------------------------------------------------------- /tests/plugins/complexNormalize/sub/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/complexNormalize/sub/plugin.js -------------------------------------------------------------------------------- /tests/plugins/complexNormalize/sub/pluginDep.js: -------------------------------------------------------------------------------- 1 | define(function() { }); 2 | -------------------------------------------------------------------------------- /tests/plugins/delegated/a.refine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/delegated/a.refine -------------------------------------------------------------------------------- /tests/plugins/delegated/delegated-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/delegated/delegated-tests.js -------------------------------------------------------------------------------- /tests/plugins/delegated/delegated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/delegated/delegated.html -------------------------------------------------------------------------------- /tests/plugins/delegated/delegated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/delegated/delegated.js -------------------------------------------------------------------------------- /tests/plugins/double.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/double.html -------------------------------------------------------------------------------- /tests/plugins/double.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/double.js -------------------------------------------------------------------------------- /tests/plugins/earth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/earth.js -------------------------------------------------------------------------------- /tests/plugins/fromText/a.refine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/fromText/a.refine -------------------------------------------------------------------------------- /tests/plugins/fromText/b.refine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/fromText/b.refine -------------------------------------------------------------------------------- /tests/plugins/fromText/fromText-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/fromText/fromText-tests.js -------------------------------------------------------------------------------- /tests/plugins/fromText/fromText.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/fromText/fromText.html -------------------------------------------------------------------------------- /tests/plugins/fromText/fromTextConfig-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/fromText/fromTextConfig-tests.js -------------------------------------------------------------------------------- /tests/plugins/fromText/fromTextConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/fromText/fromTextConfig.html -------------------------------------------------------------------------------- /tests/plugins/fromText/refine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/fromText/refine.js -------------------------------------------------------------------------------- /tests/plugins/fromTextEvalError/a.refine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/fromTextEvalError/a.refine -------------------------------------------------------------------------------- /tests/plugins/fromTextEvalError/b.refine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/fromTextEvalError/b.refine -------------------------------------------------------------------------------- /tests/plugins/fromTextEvalError/fromTextEvalError-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/fromTextEvalError/fromTextEvalError-tests.js -------------------------------------------------------------------------------- /tests/plugins/fromTextEvalError/fromTextEvalError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/fromTextEvalError/fromTextEvalError.html -------------------------------------------------------------------------------- /tests/plugins/fromTextNoDefine/a.refine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/fromTextNoDefine/a.refine -------------------------------------------------------------------------------- /tests/plugins/fromTextNoDefine/fromTextNoDefine-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/fromTextNoDefine/fromTextNoDefine-tests.js -------------------------------------------------------------------------------- /tests/plugins/fromTextNoDefine/fromTextNoDefine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/fromTextNoDefine/fromTextNoDefine.html -------------------------------------------------------------------------------- /tests/plugins/fromTextNoDefine/refine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/fromTextNoDefine/refine.js -------------------------------------------------------------------------------- /tests/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/index.js -------------------------------------------------------------------------------- /tests/plugins/indexBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/indexBuilder.js -------------------------------------------------------------------------------- /tests/plugins/nameOnly-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/nameOnly-tests.js -------------------------------------------------------------------------------- /tests/plugins/nameOnly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/nameOnly.html -------------------------------------------------------------------------------- /tests/plugins/nameOnly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/nameOnly.js -------------------------------------------------------------------------------- /tests/plugins/onerror/onerror-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/onerror/onerror-tests.js -------------------------------------------------------------------------------- /tests/plugins/onerror/onerror.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/onerror/onerror.html -------------------------------------------------------------------------------- /tests/plugins/onerror/thrower.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/onerror/thrower.js -------------------------------------------------------------------------------- /tests/plugins/pluginBundles/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginBundles/main.js -------------------------------------------------------------------------------- /tests/plugins/pluginBundles/pluginBundles-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginBundles/pluginBundles-tests.js -------------------------------------------------------------------------------- /tests/plugins/pluginBundles/pluginBundles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginBundles/pluginBundles.html -------------------------------------------------------------------------------- /tests/plugins/pluginBundlesSeparateText/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginBundlesSeparateText/main.js -------------------------------------------------------------------------------- /tests/plugins/pluginBundlesSeparateText/pluginBundlesSeparateText-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginBundlesSeparateText/pluginBundlesSeparateText-tests.js -------------------------------------------------------------------------------- /tests/plugins/pluginBundlesSeparateText/pluginBundlesSeparateText.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginBundlesSeparateText/pluginBundlesSeparateText.html -------------------------------------------------------------------------------- /tests/plugins/pluginBundlesSeparateText/second.html: -------------------------------------------------------------------------------- 1 | second template -------------------------------------------------------------------------------- /tests/plugins/pluginLast/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginLast/app.js -------------------------------------------------------------------------------- /tests/plugins/pluginLast/bigCollection.html: -------------------------------------------------------------------------------- 1 | bigCollection -------------------------------------------------------------------------------- /tests/plugins/pluginLast/bigCollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginLast/bigCollection.js -------------------------------------------------------------------------------- /tests/plugins/pluginLast/collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginLast/collection.js -------------------------------------------------------------------------------- /tests/plugins/pluginLast/collectionHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginLast/collectionHelper.js -------------------------------------------------------------------------------- /tests/plugins/pluginLast/common.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'common' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/plugins/pluginLast/component.html: -------------------------------------------------------------------------------- 1 | component -------------------------------------------------------------------------------- /tests/plugins/pluginLast/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginLast/component.js -------------------------------------------------------------------------------- /tests/plugins/pluginLast/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginLast/main.js -------------------------------------------------------------------------------- /tests/plugins/pluginLast/pluginLast.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginLast/pluginLast.html -------------------------------------------------------------------------------- /tests/plugins/pluginLast/specificCollection.html: -------------------------------------------------------------------------------- 1 | specificCollection -------------------------------------------------------------------------------- /tests/plugins/pluginLast/specificCollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginLast/specificCollection.js -------------------------------------------------------------------------------- /tests/plugins/pluginMap/dynamic/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginMap/dynamic/application.js -------------------------------------------------------------------------------- /tests/plugins/pluginMap/dynamic/employee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginMap/dynamic/employee.js -------------------------------------------------------------------------------- /tests/plugins/pluginMap/dynamic/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginMap/dynamic/main.js -------------------------------------------------------------------------------- /tests/plugins/pluginMap/dynamic/person.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginMap/dynamic/person.js -------------------------------------------------------------------------------- /tests/plugins/pluginMap/dynamic/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginMap/dynamic/plugin.js -------------------------------------------------------------------------------- /tests/plugins/pluginMap/dynamic/pluginMapDynamic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginMap/dynamic/pluginMapDynamic.html -------------------------------------------------------------------------------- /tests/plugins/pluginMap/pluginMap-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginMap/pluginMap-tests.js -------------------------------------------------------------------------------- /tests/plugins/pluginMap/pluginMap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginMap/pluginMap.html -------------------------------------------------------------------------------- /tests/plugins/pluginMapSameName/plugin/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginMapSameName/plugin/plugin.js -------------------------------------------------------------------------------- /tests/plugins/pluginMapSameName/pluginMapSameName-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginMapSameName/pluginMapSameName-tests.js -------------------------------------------------------------------------------- /tests/plugins/pluginMapSameName/pluginMapSameName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginMapSameName/pluginMapSameName.html -------------------------------------------------------------------------------- /tests/plugins/pluginNormalize/modA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginNormalize/modA.js -------------------------------------------------------------------------------- /tests/plugins/pluginNormalize/modB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginNormalize/modB.js -------------------------------------------------------------------------------- /tests/plugins/pluginNormalize/pluginNormalize-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginNormalize/pluginNormalize-tests.js -------------------------------------------------------------------------------- /tests/plugins/pluginNormalize/pluginNormalize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginNormalize/pluginNormalize.html -------------------------------------------------------------------------------- /tests/plugins/pluginShim/a.refine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginShim/a.refine -------------------------------------------------------------------------------- /tests/plugins/pluginShim/legacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginShim/legacy.js -------------------------------------------------------------------------------- /tests/plugins/pluginShim/pluginShim-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginShim/pluginShim-tests.js -------------------------------------------------------------------------------- /tests/plugins/pluginShim/pluginShim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/pluginShim/pluginShim.html -------------------------------------------------------------------------------- /tests/plugins/prime/a.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'aPrime' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/plugins/prime/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/prime/b.js -------------------------------------------------------------------------------- /tests/plugins/prime/c.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: "cPrime" 3 | }); 4 | -------------------------------------------------------------------------------- /tests/plugins/prime/earth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/prime/earth.js -------------------------------------------------------------------------------- /tests/plugins/sync-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/sync-tests.js -------------------------------------------------------------------------------- /tests/plugins/sync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/sync.html -------------------------------------------------------------------------------- /tests/plugins/textDepend/test.txt: -------------------------------------------------------------------------------- 1 | hello world -------------------------------------------------------------------------------- /tests/plugins/textDepend/textDepend-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/textDepend/textDepend-tests.js -------------------------------------------------------------------------------- /tests/plugins/textDepend/textDepend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/textDepend/textDepend.html -------------------------------------------------------------------------------- /tests/plugins/textDepend/textDepend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/plugins/textDepend/textDepend.js -------------------------------------------------------------------------------- /tests/queryPath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/queryPath.html -------------------------------------------------------------------------------- /tests/relative/foo/bar.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'bar' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/relative/foo/bar/message.txt: -------------------------------------------------------------------------------- 1 | hello world -------------------------------------------------------------------------------- /tests/relative/foo/bar/one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/relative/foo/bar/one.js -------------------------------------------------------------------------------- /tests/relative/foo/bar/two.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/relative/foo/bar/two.js -------------------------------------------------------------------------------- /tests/relative/foo/three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/relative/foo/three.js -------------------------------------------------------------------------------- /tests/relative/greek/alpha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/relative/greek/alpha.js -------------------------------------------------------------------------------- /tests/relative/greek/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/relative/greek/main.js -------------------------------------------------------------------------------- /tests/relative/outsideBaseUrl/2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/relative/outsideBaseUrl/2.js -------------------------------------------------------------------------------- /tests/relative/outsideBaseUrl/a/outsideBaseUrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/relative/outsideBaseUrl/a/outsideBaseUrl.html -------------------------------------------------------------------------------- /tests/relative/outsideBaseUrl/b/1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/relative/outsideBaseUrl/b/1.js -------------------------------------------------------------------------------- /tests/relative/outsideBaseUrl/b/3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/relative/outsideBaseUrl/b/3.js -------------------------------------------------------------------------------- /tests/relative/relative-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/relative/relative-tests.js -------------------------------------------------------------------------------- /tests/relative/relative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/relative/relative.html -------------------------------------------------------------------------------- /tests/relative/relativeBaseUrl-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/relative/relativeBaseUrl-tests.js -------------------------------------------------------------------------------- /tests/relative/relativeBaseUrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/relative/relativeBaseUrl.html -------------------------------------------------------------------------------- /tests/relative/top.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/relative/top.js -------------------------------------------------------------------------------- /tests/remoteUrls/jqwrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/remoteUrls/jqwrap.js -------------------------------------------------------------------------------- /tests/remoteUrls/remoteUrls-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/remoteUrls/remoteUrls-tests.js -------------------------------------------------------------------------------- /tests/remoteUrls/remoteUrls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/remoteUrls/remoteUrls.html -------------------------------------------------------------------------------- /tests/remoteUrls/util.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'util' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/remoteUrls/util2.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'util2' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/requireAsync/requireAsync-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/requireAsync/requireAsync-tests.js -------------------------------------------------------------------------------- /tests/requireAsync/requireAsync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/requireAsync/requireAsync.html -------------------------------------------------------------------------------- /tests/requirePluginLoad/requirePluginLoad-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/requirePluginLoad/requirePluginLoad-tests.js -------------------------------------------------------------------------------- /tests/requirePluginLoad/requirePluginLoad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/requirePluginLoad/requirePluginLoad.html -------------------------------------------------------------------------------- /tests/secondLateConfigPlugin/app/lib_/amd/nonamd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/secondLateConfigPlugin/app/lib_/amd/nonamd.js -------------------------------------------------------------------------------- /tests/secondLateConfigPlugin/app/lib_/amd/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/secondLateConfigPlugin/app/lib_/amd/text.js -------------------------------------------------------------------------------- /tests/secondLateConfigPlugin/app/lib_/jquery.foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/secondLateConfigPlugin/app/lib_/jquery.foo.js -------------------------------------------------------------------------------- /tests/secondLateConfigPlugin/app/lib_/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/secondLateConfigPlugin/app/lib_/jquery.js -------------------------------------------------------------------------------- /tests/secondLateConfigPlugin/plugin1_ko/A.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/secondLateConfigPlugin/plugin1_ko/A.js -------------------------------------------------------------------------------- /tests/secondLateConfigPlugin/plugin1_ko/jquery.bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/secondLateConfigPlugin/plugin1_ko/jquery.bar.js -------------------------------------------------------------------------------- /tests/secondLateConfigPlugin/secondLateConfigPlugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/secondLateConfigPlugin/secondLateConfigPlugin.html -------------------------------------------------------------------------------- /tests/setTimeout-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/setTimeout-tests.js -------------------------------------------------------------------------------- /tests/setTimeout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/setTimeout.html -------------------------------------------------------------------------------- /tests/shim/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/shim/a.js -------------------------------------------------------------------------------- /tests/shim/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/shim/b.js -------------------------------------------------------------------------------- /tests/shim/basic-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/shim/basic-tests.js -------------------------------------------------------------------------------- /tests/shim/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/shim/basic.html -------------------------------------------------------------------------------- /tests/shim/built/basic-built.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/shim/built/basic-built.html -------------------------------------------------------------------------------- /tests/shim/built/basic-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/shim/built/basic-tests.js -------------------------------------------------------------------------------- /tests/shim/c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/shim/c.js -------------------------------------------------------------------------------- /tests/shim/d.js: -------------------------------------------------------------------------------- 1 | function D() { 2 | this.name = 'd'; 3 | }; 4 | -------------------------------------------------------------------------------- /tests/shim/e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/shim/e.js -------------------------------------------------------------------------------- /tests/shim/f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/shim/f.js -------------------------------------------------------------------------------- /tests/simple-badbase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/simple-badbase.html -------------------------------------------------------------------------------- /tests/simple-nohead.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/simple-nohead.html -------------------------------------------------------------------------------- /tests/simple-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/simple-tests.js -------------------------------------------------------------------------------- /tests/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/simple.html -------------------------------------------------------------------------------- /tests/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/simple.js -------------------------------------------------------------------------------- /tests/specialDeps/foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/specialDeps/foo.js -------------------------------------------------------------------------------- /tests/specialDeps/specialDeps-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/specialDeps/specialDeps-tests.js -------------------------------------------------------------------------------- /tests/specialDeps/specialDeps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/specialDeps/specialDeps.html -------------------------------------------------------------------------------- /tests/text/local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/text/local.js -------------------------------------------------------------------------------- /tests/text/plain.txt: -------------------------------------------------------------------------------- 1 | hello world -------------------------------------------------------------------------------- /tests/text/resources/local.html: -------------------------------------------------------------------------------- 1 |

Local

-------------------------------------------------------------------------------- /tests/text/resources/sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/text/resources/sample.html -------------------------------------------------------------------------------- /tests/text/separate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/text/separate.js -------------------------------------------------------------------------------- /tests/text/subwidget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/text/subwidget.html -------------------------------------------------------------------------------- /tests/text/subwidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/text/subwidget.js -------------------------------------------------------------------------------- /tests/text/subwidget2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/text/subwidget2.html -------------------------------------------------------------------------------- /tests/text/text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/text/text.html -------------------------------------------------------------------------------- /tests/text/textBuilt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/text/textBuilt.html -------------------------------------------------------------------------------- /tests/text/textBuilt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/text/textBuilt.js -------------------------------------------------------------------------------- /tests/text/textOnError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/text/textOnError.html -------------------------------------------------------------------------------- /tests/text/textOnXhr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/text/textOnXhr.html -------------------------------------------------------------------------------- /tests/text/textOnly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/text/textOnly.html -------------------------------------------------------------------------------- /tests/text/widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/text/widget.html -------------------------------------------------------------------------------- /tests/text/widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/text/widget.js -------------------------------------------------------------------------------- /tests/toUrl/.hidden.html: -------------------------------------------------------------------------------- 1 | .hidden -------------------------------------------------------------------------------- /tests/toUrl/auxil.html: -------------------------------------------------------------------------------- 1 | aux -------------------------------------------------------------------------------- /tests/toUrl/main.html: -------------------------------------------------------------------------------- 1 | main.html -------------------------------------------------------------------------------- /tests/toUrl/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/toUrl/main.js -------------------------------------------------------------------------------- /tests/toUrl/sub/nested/thing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/toUrl/sub/nested/thing.js -------------------------------------------------------------------------------- /tests/toUrl/sub/noext: -------------------------------------------------------------------------------- 1 | noext -------------------------------------------------------------------------------- /tests/toUrl/sub/util.html: -------------------------------------------------------------------------------- 1 | util -------------------------------------------------------------------------------- /tests/toUrl/sub/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/toUrl/sub/util.js -------------------------------------------------------------------------------- /tests/toUrl/toUrl-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/toUrl/toUrl-tests.js -------------------------------------------------------------------------------- /tests/toUrl/toUrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/toUrl/toUrl.html -------------------------------------------------------------------------------- /tests/trailingComma/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/trailingComma/a.js -------------------------------------------------------------------------------- /tests/trailingComma/trailingComma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/trailingComma/trailingComma.html -------------------------------------------------------------------------------- /tests/trailingComma/trailingComma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/trailingComma/trailingComma.js -------------------------------------------------------------------------------- /tests/tres.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/tres.js -------------------------------------------------------------------------------- /tests/two.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/two.js -------------------------------------------------------------------------------- /tests/undef/globalFoo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/undef/globalFoo.js -------------------------------------------------------------------------------- /tests/undef/real.js: -------------------------------------------------------------------------------- 1 | define({ 2 | name: 'real' 3 | }); 4 | -------------------------------------------------------------------------------- /tests/undef/undef.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/undef/undef.html -------------------------------------------------------------------------------- /tests/undef/undefEnforceShim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/undef/undefEnforceShim.html -------------------------------------------------------------------------------- /tests/undef/undefLocal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/undef/undefLocal.html -------------------------------------------------------------------------------- /tests/undef/undefNoRequire.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/undef/undefNoRequire.html -------------------------------------------------------------------------------- /tests/undef/undefNoRequire2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/undef/undefNoRequire2.html -------------------------------------------------------------------------------- /tests/uniques/one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/uniques/one.js -------------------------------------------------------------------------------- /tests/uniques/three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/uniques/three.js -------------------------------------------------------------------------------- /tests/uniques/two.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/uniques/two.js -------------------------------------------------------------------------------- /tests/uniques/uniques.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/uniques/uniques.html -------------------------------------------------------------------------------- /tests/universal/eye.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/universal/eye.js -------------------------------------------------------------------------------- /tests/universal/newt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/universal/newt.js -------------------------------------------------------------------------------- /tests/universal/spell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/universal/spell.js -------------------------------------------------------------------------------- /tests/universal/tail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/universal/tail.js -------------------------------------------------------------------------------- /tests/universal/universal-built.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/universal/universal-built.html -------------------------------------------------------------------------------- /tests/universal/universal-tests-built-expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/universal/universal-tests-built-expected.js -------------------------------------------------------------------------------- /tests/universal/universal-tests-built.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/universal/universal-tests-built.js -------------------------------------------------------------------------------- /tests/universal/universal-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/universal/universal-tests.js -------------------------------------------------------------------------------- /tests/universal/universal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/universal/universal.html -------------------------------------------------------------------------------- /tests/uno.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/uno.js -------------------------------------------------------------------------------- /tests/unorderedDefine/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/unorderedDefine/app.js -------------------------------------------------------------------------------- /tests/unorderedDefine/bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/unorderedDefine/bar.js -------------------------------------------------------------------------------- /tests/unorderedDefine/unorderedDefine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/unorderedDefine/unorderedDefine.html -------------------------------------------------------------------------------- /tests/urlArgsBlob.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/urlArgsBlob.html -------------------------------------------------------------------------------- /tests/urlArgsToUrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/urlArgsToUrl.html -------------------------------------------------------------------------------- /tests/urlArgsToUrlFunction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/urlArgsToUrlFunction.html -------------------------------------------------------------------------------- /tests/urlfetch/one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/urlfetch/one.js -------------------------------------------------------------------------------- /tests/urlfetch/three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/urlfetch/three.js -------------------------------------------------------------------------------- /tests/urlfetch/two.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/urlfetch/two.js -------------------------------------------------------------------------------- /tests/urlfetch/urlfetch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/urlfetch/urlfetch.html -------------------------------------------------------------------------------- /tests/version1/alpha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/version1/alpha.js -------------------------------------------------------------------------------- /tests/version1/beta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/version1/beta.js -------------------------------------------------------------------------------- /tests/version1/gamma.js: -------------------------------------------------------------------------------- 1 | gamma = { 2 | color: "green" 3 | } 4 | -------------------------------------------------------------------------------- /tests/version1/omega.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/version1/omega.js -------------------------------------------------------------------------------- /tests/version2/alpha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/version2/alpha.js -------------------------------------------------------------------------------- /tests/version2/beta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/version2/beta.js -------------------------------------------------------------------------------- /tests/version2/epsilon.js: -------------------------------------------------------------------------------- 1 | epsilon = { 2 | color: "red" 3 | } 4 | -------------------------------------------------------------------------------- /tests/version2/omega.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/version2/omega.js -------------------------------------------------------------------------------- /tests/workers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/workers.html -------------------------------------------------------------------------------- /tests/workers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/tests/workers.js -------------------------------------------------------------------------------- /updatesubs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/requirejs/requirejs/HEAD/updatesubs.sh --------------------------------------------------------------------------------