create-eas-build-function 0.0.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 +21 -0
- package/build/index.js +82 -0
- package/package.json +58 -0
- package/templates/javascript/.babelrc +13 -0
- package/templates/javascript/package.json +15 -0
- package/templates/javascript/src/index.js +5 -0
- package/templates/typescript/README.md +1 -0
- package/templates/typescript/package.json +17 -0
- package/templates/typescript/src/index.ts +28 -0
- package/templates/typescript/tsconfig.json +26 -0
package/README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<a href="https://docs.expo.dev/build/introduction/">
|
|
3
|
+
<img alt="create-expo-app" src="./.gh-assets/banner.svg">
|
|
4
|
+
<h1 align="center">Create EAS Build custom function module</h1>
|
|
5
|
+
</a>
|
|
6
|
+
</p>
|
|
7
|
+
|
|
8
|
+
<p align="center">
|
|
9
|
+
<b>The fastest way to create the custom function module for EAS Build custom builds</b>
|
|
10
|
+
</p>
|
|
11
|
+
|
|
12
|
+
```sh
|
|
13
|
+
# With NPM
|
|
14
|
+
npx create-eas-build-function
|
|
15
|
+
|
|
16
|
+
# With Yarn
|
|
17
|
+
yarn create-eas-build-function
|
|
18
|
+
|
|
19
|
+
# With pnpm
|
|
20
|
+
pnpm create-eas-build-function
|
|
21
|
+
```
|