web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
371 B

  1. 'use strict';
  2. // TODO: this doesn't make sense for an ESLint rule.
  3. // We need to fix our build process to not create bundles for "raw" packages like this.
  4. if (process.env.NODE_ENV === 'production') {
  5. module.exports = require('./cjs/eslint-plugin-react-hooks.production.min.js');
  6. } else {
  7. module.exports = require('./cjs/eslint-plugin-react-hooks.development.js');
  8. }