Initial commit
This commit is contained in:
+1
@@ -0,0 +1 @@
|
||||
console.log(require('zzz'))
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"browser": {
|
||||
"zzz": "aaa"
|
||||
}
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
console.log(require('zzz'))
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"browser": {
|
||||
"zzz": "./x"
|
||||
}
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
module.exports = 444
|
||||
+1
@@ -0,0 +1 @@
|
||||
console.log(require('./z.js'))
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"browser": {
|
||||
"./z": "./x"
|
||||
}
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
module.exports = 333
|
||||
+1
@@ -0,0 +1 @@
|
||||
console.log(require('./z.js'))
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"browser": {
|
||||
"./z.js": "./x.js"
|
||||
}
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
module.exports = 222
|
||||
+1
@@ -0,0 +1 @@
|
||||
console.log(require('./z.js'))
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"browser": {
|
||||
"./z": "./x.js"
|
||||
}
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
module.exports = 111
|
||||
+1
@@ -0,0 +1 @@
|
||||
console.log(require('aaa/what.js'))
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"browser": {
|
||||
"aaa/what": "./x.js"
|
||||
}
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
module.exports = 999
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
try { var x = require('./x') } catch (err) {}
|
||||
console.log(x)
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"browser": {
|
||||
"./x.js": false
|
||||
}
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
module.exports = 1000
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
try { var x = require('./x.js') } catch (err) {}
|
||||
console.log(x)
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"browser": {
|
||||
"./x": false
|
||||
}
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
module.exports = 1000
|
||||
+1
@@ -0,0 +1 @@
|
||||
module.exports = 5000
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
var x = require('./x.js')
|
||||
console.log(x)
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"browser": {
|
||||
"./x": "./browser"
|
||||
}
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
module.exports = 1000
|
||||
+1
@@ -0,0 +1 @@
|
||||
module.exports = 5000
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
var x = require('./x')
|
||||
console.log(x)
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"browser": {
|
||||
"./x.js": "./browser.js"
|
||||
}
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
module.exports = 1000
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
var zzz = require('x/zzz')
|
||||
console.log(zzz)
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
var zzz = require('x/zzz')
|
||||
console.log(zzz)
|
||||
Reference in New Issue
Block a user