npm.io
0.0.5 • Published 7 years ago

firebase-setup-web

Licence
MIT
Version
0.0.5
Deps
0
Size
3 kB
Vulns
0
Weekly
0
Stars
2

npm version

firebase-setup-web

Important

In order to use this module,
you need to be able to execute "firebase setup:web" in the target project.

Installation

npm install --save-dev firebase-setup-web
# or
yarn add -D firebase-setup-web

Usage

const config = require('firebase-setup-web');

const defParams = {
    'process.env.FB_PROJECT_ID': JSON.stringify(config.projectId),
}

// webpack config
module.exports = {
    plugins: [
        new webpack.DefinePlugin(defParam),
    ],
};
Using token

If you want to get config using token,
please set a token to environment valiable FB_CI_TOKEN.

export FB_CI_TOKEN="Set Here"

Interface

interface Config {
    apiKey: string;
    databaseURL: string;
    storageBucket: string;
    authDomain: string;
    messagingSenderId: string;
    projectId: string;
}

LICENSE

MIT

Keywords