0.1.3 • Published 4 years ago

@expo/envsub v0.1.3

Weekly downloads
5
License
ISC
Repository
-
Last release
4 years ago

@expo/envsub

@expo/envsub provides file-level variable substitution (Mustache template style).

API

envsub(templateFile: string, outputFile: string, envs: Record<string, string | number>): Promise<void>

Usage example

import envsub from '@expo/envsub';

await envsub('abc.json.template', 'abc.json', { ABC: 123, XYZ: 789 });

abc.json.template file contents:

{
  "someKey": {{ ABC }},
  "anotherKey": {{ XYZ }}
}

abc.json file should be created with the following contents:

{
  "someKey": 123,
  "anotherKey": 789
}

Repository

https://github.com/expo/turtle-v2/tree/master/src/envsub

0.1.3

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago