Template Upload

This commit is contained in:
SOUTHERNCO\x2mjbyrn
2017-05-17 13:45:25 -04:00
parent 415b9c25f3
commit 7efe7605b8
11476 changed files with 2170865 additions and 34 deletions

View File

@ -0,0 +1 @@
(typeof window != 'undefined' ? window : global).depCacheTest = 'passed';

View File

@ -0,0 +1,2 @@
require('./self-load.js');
module.exports = 'dirindex';

View File

@ -0,0 +1,2 @@
exports.a = require('..');
exports.b = require('../');

View File

@ -0,0 +1,3 @@
{
"json": "index"
}

View File

@ -0,0 +1 @@
module.exports = 'browser';

View File

@ -0,0 +1 @@
module.exports = 'not browser';

1
node_modules/systemjs/test/tests/testpkg/index.js generated vendored Normal file
View File

@ -0,0 +1 @@
exports.prop = 'value';

View File

@ -0,0 +1 @@
module.exports = 'interpolated!';

4
node_modules/systemjs/test/tests/testpkg/json.js generated vendored Normal file
View File

@ -0,0 +1,4 @@
exports.translate = function(load) {
load.metadata.format = 'cjs';
return 'module.exports = ' + load.source;
};

3
node_modules/systemjs/test/tests/testpkg/json.json generated vendored Normal file
View File

@ -0,0 +1,3 @@
{
"prop": "value"
}

1
node_modules/systemjs/test/tests/testpkg/polate.js generated vendored Normal file
View File

@ -0,0 +1 @@
module.exports = 'polate';

View File

@ -0,0 +1,2 @@
exports.a = require('.');
exports.b = require('./');

1
node_modules/systemjs/test/tests/testpkg/self.js generated vendored Normal file
View File

@ -0,0 +1 @@
module.exports = require('testpkg/json');

28
node_modules/systemjs/test/tests/testpkg/system.json generated vendored Normal file
View File

@ -0,0 +1,28 @@
{
"README": "This is not encouraging a system.json, which is a bad idea.",
"main": ["wrong-main"],
"format": "cjs",
"defaultExtension": "js",
"meta": {
"*.json": { "loader": "json" },
"noext": { "alias": "./json.json" },
"test.ts": true
},
"map": {
"json": "./json.js",
"./json": "./json.json",
"./dir/": "./dir/index",
"./dir2.js": "./dir2/index.json",
"./dir/test": "global-test",
"./env-module": {
"browser": "./env-module-browser.js"
},
"p": "./polate.js",
"./conditional1": "./interpolate.js",
"./conditional2": "./inter#{p}.js"
},
"depCache": {
"./dir2/index.json": ["../depcache-test"]
}
}

1
node_modules/systemjs/test/tests/testpkg/test.ts generated vendored Normal file
View File

@ -0,0 +1 @@
module.exports = 'ts';