metro-file-map 0.70.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -0
- package/package.json +30 -0
- package/src/index.js +13 -0
package/README.md
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "metro-file-map",
|
|
3
|
+
"version": "0.70.1",
|
|
4
|
+
"description": "🚇 File crawling, watching and mapping for Metro",
|
|
5
|
+
"main": "src/index.js",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git@github.com:facebook/metro.git"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"prepare-release": "test -d build && rm -rf src.real && mv src src.real && mv build src",
|
|
12
|
+
"cleanup-release": "test ! -e build && mv src build && mv src.real src"
|
|
13
|
+
},
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"anymatch": "^3.0.3",
|
|
17
|
+
"fb-watchman": "^2.0.0",
|
|
18
|
+
"graceful-fs": "^4.2.4",
|
|
19
|
+
"invariant": "^2.2.4",
|
|
20
|
+
"jest-regex-util": "^27.0.6",
|
|
21
|
+
"jest-serializer": "^27.0.6",
|
|
22
|
+
"jest-util": "^27.2.0",
|
|
23
|
+
"jest-worker": "^27.2.0",
|
|
24
|
+
"micromatch": "^4.0.4",
|
|
25
|
+
"walker": "^1.0.7"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"slash": "^3.0.0"
|
|
29
|
+
}
|
|
30
|
+
}
|
package/src/index.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the MIT license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*
|
|
7
|
+
* @format
|
|
8
|
+
* @flow strict
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
'use strict';
|
|
12
|
+
|
|
13
|
+
throw new Error('Coming soon...');
|