create-expo 4.0.0 → 4.0.2
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/LICENSE +21 -0
- package/build/205.index.js +4 -4
- package/build/index.js +4 -4
- package/package.json +19 -19
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2015-present 650 Industries, Inc. (aka Expo)
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/build/205.index.js
CHANGED
|
@@ -123,8 +123,8 @@ function wrapFetchWithAssert(fetchFunction) {
|
|
|
123
123
|
/** Export a fetch method that ensures fetch is available */
|
|
124
124
|
const fetch_fetch = wrapFetchWithAssert(globalThis.fetch);
|
|
125
125
|
|
|
126
|
-
// EXTERNAL MODULE: ../../node_modules/.pnpm/@expo+spawn-async@1.
|
|
127
|
-
var spawnAsync = __webpack_require__(
|
|
126
|
+
// EXTERNAL MODULE: ../../node_modules/.pnpm/@expo+spawn-async@1.8.0/node_modules/@expo/spawn-async/build/spawnAsync.js
|
|
127
|
+
var spawnAsync = __webpack_require__(3970);
|
|
128
128
|
var spawnAsync_default = /*#__PURE__*/__webpack_require__.n(spawnAsync);
|
|
129
129
|
// EXTERNAL MODULE: external "os"
|
|
130
130
|
var external_os_ = __webpack_require__(857);
|
|
@@ -167,8 +167,8 @@ class ChecksumStream extends TransformStream {
|
|
|
167
167
|
return this.hash.digest(encoding);
|
|
168
168
|
}
|
|
169
169
|
}
|
|
170
|
-
async function extractStream(input,
|
|
171
|
-
output = external_node_path_default().resolve(
|
|
170
|
+
async function extractStream(input, targetOutput, options = {}) {
|
|
171
|
+
const output = external_node_path_default().resolve(targetOutput) + (external_node_path_default()).sep;
|
|
172
172
|
await external_node_fs_default().promises.mkdir(output, { recursive: true });
|
|
173
173
|
const { checksumAlgorithm, strip = 0, rename, filter } = options;
|
|
174
174
|
const checksumStream = new ChecksumStream(checksumAlgorithm || 'md5');
|