0.0.5 • Published 5 years ago

firebase-setup-web v0.0.5

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

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

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago