1.0.15 • Published 6 months ago

@jswork/cra-envs v1.0.15

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

cra-envs

An env-cmd helper for cra.

version license size download

installation

npm install -D env-cmd
npm install -S @jswork/cra-envs

usage

// ---------- package.json
"scripts": {
  "start": "env-cmd -e local react-scripts start",
  "build:beta": "env-cmd -e beta react-scripts build",
  "build:prod": "env-cmd -e prod react-scripts build",
  "test": "react-scripts test",
  "eject": "react-scripts eject"
}
// ---------- .env-cmdrc.js
const CraEnvs = require('@jswork/cra-envs');

module.exports = CraEnvs.set({
  "local": {
    "API_URL": "http://localhost:3000",
    "BUILD_ENV": 'local-api.github.com/users/afeiship',
  },
  "beta": {
    "API_URL": "http://beta.api.com",
    "BUILD_ENV": 'beta-api.github.com/users/afeiship',
  },
  "production": {
    "API_URL": "http://api.com",
    "BUILD_ENV": 'api.github.com/users/afeiship',
  },
});

// ---------- src/app.tsx
// get 'BUILD_ENV'
const buildEnv = CraEnvs.get('BUILD_ENV');
// get all
const envs = CraEnvs.get();

license

Code released under the MIT license.

1.0.15

6 months ago

1.0.14

6 months ago

1.0.13

2 years ago

1.0.12

2 years ago

1.0.11

2 years ago

1.0.10

2 years ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago