1.0.7 • Published 1 year ago

eas-config-ts v1.0.7

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

eas-config-ts

A TypeScript-based configuration generator for EAS (Expo Application Services).

alt text

Installation

pnpm add -D eas-config-ts

Usage

  1. Create an eas.config.ts file in your project root with your EAS configuration.
import { defineEasConfig } from "eas-config-ts";
// necessary if you want to use dotenv
import "dotenv/config";

// you can write type-safe config
export default defineEasConfig({
  build: {
    development: {
      // process.env can be used!!
      env: process.env,
    },
  },
});
  1. Run the following command to generate eas.json
npx gen-eas-config
1.0.7

1 year ago

1.0.6-0

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2-0

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago