1.0.6 • Published 2 years ago

@jswork/craco-plugin-environment v1.0.6

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

craco-plugin-environment

Craco plugin for env.

version license size download

installation

npm install @jswork/craco-plugin-environment

usage

import cracoPluginEnvironment from '@jswork/craco-plugin-environment';

// global.d.ts
declare global {
  const APP_VARS: any;
}

// eslintrc.js
"globals": {
  "APP_VARS": true
}

// craco.config.js
{
  plugin: cracoPluginEnvironment,
  options: {
    vars: {
      BUILD_DATETIME: new Date().toLocaleString('en-US', {
        hour12: false,
        timeZone: 'Asia/ShangHai',
      }),
      BUILD_VERSION: pkg.version,
    },
  },
}

license

Code released under the MIT license.

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago