@react-native-aria/overlays 0.3.11-alpha.0 → 0.3.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-aria/overlays",
3
- "version": "0.3.11-alpha.0",
3
+ "version": "0.3.11",
4
4
  "description": "Overlay utilities. Part of react-native-aria",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",
package/babel.config.js DELETED
@@ -1,3 +0,0 @@
1
- module.exports = {
2
- presets: ['module:metro-react-native-babel-preset'],
3
- };
@@ -1,24 +0,0 @@
1
- const path = require('path');
2
- const child_process = require('child_process');
3
-
4
- const root = path.resolve(__dirname, '..');
5
- const args = process.argv.slice(2);
6
- const options = {
7
- cwd: process.cwd(),
8
- env: process.env,
9
- stdio: 'inherit',
10
- encoding: 'utf-8',
11
- };
12
-
13
- let result;
14
-
15
- if (process.cwd() !== root || args.length) {
16
- // We're not in the root of the project, or additional arguments were passed
17
- // In this case, forward the command to `yarn`
18
- result = child_process.spawnSync('yarn', args, options);
19
- } else {
20
- // If `yarn` is run without arguments, perform bootstrap
21
- result = child_process.spawnSync('yarn', ['bootstrap'], options);
22
- }
23
-
24
- process.exitCode = result.status;
@@ -1,5 +0,0 @@
1
-
2
- {
3
- "extends": "../tsconfig",
4
- }
5
-