Skip to content

Add support for app.config.js #12

@byCedric

Description

@byCedric

Description of the feature

Next to app.json and app.config.json, this library should support having a dynamic config.

Motivation

It's new and paves the path to a new set of tools to use for managing expo manifests.

Additional context

An example could be something like:

import * as versions from 'standard-version-expo';
import pkg from './package.json';

export default {
  name: 'awesomeapp',
  version: pkg.version,
  ios: {
    bundleIdentifier: 'com.acme.awesomeapp',
    buildNumber: versions.ios(pkg.version),
  },
  android: {
    package: 'com.acme.awesomeapp',
    versionCode: versions.android(pkg.version),
  }
}

This only works with deterministic methods, for incremental updates this would not work (which is kind of the reason why increments are not that great 😅)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions