@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 +1 -1
- package/babel.config.js +0 -3
- package/scripts/bootstrap.js +0 -24
- package/tsconfig.build.json +0 -5
package/package.json
CHANGED
package/babel.config.js
DELETED
package/scripts/bootstrap.js
DELETED
@@ -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;
|