Code Monkey home page Code Monkey logo

global-components's Introduction

@nuxtjs/global-components

npm version npm downloads Github Actions CI Codecov License

Module to register global components for Nuxt.js

๐Ÿ“– Release Notes

โš ๏ธ Important

NuxtJS Team released @nuxt/components to auto import components when used in templates, allowing better performances and features.

If you want to migrate from this module, you will simply have to remove the .global suffix.

Usage

Suffix your components with .global.{ext} to declare your global components.

components/
  my-component.vue # local component, import it to use it
  my-button.global.vue # global component, no need to register it!

See live demo.

Setup

  1. Add @nuxtjs/global-components dependency to your project
yarn add --dev @nuxtjs/global-components # or npm install --save-dev @nuxtjs/global-components
  1. Add @nuxtjs/global-components to the buildModules section of nuxt.config.js
export default {
  buildModules: [
    // Simple usage
    '@nuxtjs/global-components',

    // With options
    ['@nuxtjs/global-components', { /* module options */ }]
  ]
}

โš ๏ธ If you are using Nuxt < v2.9 you have to install the module as a dependency (No --dev or --save-dev flags) and use modules section in nuxt.config.js instead of buildModules.

Using top level options

export default {
  buildModules: [
    '@nuxtjs/global-components'
  ],
  globalComponents: {
    /* module options */
  }
}

Options

dir

  • Type: String|Array
  • Default: components

A list of directories to find components inside your nuxt project.

suffixes

  • Type: Array
  • Default: ['global']

The suffixes that files can contain.

extensions

  • Type: Array
  • Default: ['vue', 'js', 'ts']

The extensions that files can contain.

ignore

  • Type: Array
  • Default: []

An array of glob patterns to exclude matches.

ignoreNameDetection

  • Type: Boolean
  • Default: false

Ignore name detection using prototype names.

License

MIT License

Insipired by nuxtjs.org

Copyright (c) Nuxt Community

global-components's People

Contributors

alexsabur avatar atinux avatar lihbr avatar pi0 avatar pimlie avatar renovate[bot] avatar ricardogobbosouza avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

global-components's Issues

Nuxt Warning

Hi, I noticed this Nuxt warning while i running build or generate commands:

โš  Nuxt Warning                                                                     
                                                                                         
      The command 'nuxt build' finished but did not exit after 5s                        
      This is most likely not caused by a bug in Nuxt.js                                 
      Make sure to cleanup all timers and listeners you or your plugins/modules start.   
      Nuxt.js will now force exit                                                        
                                                                                        
      DeprecationWarning: Starting with Nuxt version 3 this will be a fatal error  

I got it right after cloning and updating the project on the readme page: https://codesandbox.io/s/nuxtjs-global-components-ujtoq

Screenshot 2020-01-19 at 09 36 37

Is there any way to get rid of this warning?

Components are not being registered when mangled by Webpack

Webpack mangles prototype names to t or similar in production environments, which prevents this plugin from working. This can be resolved using mangle.keep_fnames in the Webpack config.

However, it would be great to add an option to this package to simply ignore name detection using prototype names, or possibly ignore it by default to make it work with the default Nuxt config.

<% options.forEach(({ name }) => { %>Vue.component(<%= name %>.name || '<%= name %>', <%= name %>)

What's your thoughts?

Feature request: register files regardless of suffix

Sometimes you cant or dont want to change the file name to add the suffix, would be nice if there was eg a files options so you can just list files that will be globally registered regardless of the suffix.

These examples below might not be best practices, but could be useful nonetheless

   files: [
     '../../a-theme-you-bought/src/component.vue',
     'node_modules/3rd-party-lib/src/component.vue'
   ]

FATAL suffixes.flatMap is not a function when running nuxt generate

When I ran nuxt generate I got the following error:

4:36:19 PM: Verify run directory
4:36:19 PM: Executing user command: npm run generate
4:36:19 PM: > [email protected] generate /opt/build/repo
4:36:19 PM: > nuxt generate
4:36:20 PM:  FATAL  suffixes.flatMap is not a function
4:36:20 PM:   at ModuleContainer.module.exports (node_modules/@nuxtjs/global-components/lib/module.js:16:43)
4:36:20 PM:   at ModuleContainer.addModule (node_modules/@nuxt/core/dist/core.js:190:34)
4:36:20 PM:   at promise.then (node_modules/@nuxt/utils/dist/utils.js:1802:43)
4:36:20 PM:   at process._tickCallback (internal/process/next_tick.js:68:7)
4:36:20 PM:   at Function.Module.runMain (internal/modules/cjs/loader.js:834:11)
4:36:20 PM:   at startup (internal/bootstrap/node.js:283:19)
4:36:20 PM:   at bootstrapNodeJSCore (internal/bootstrap/node.js:623:3)
4:36:20 PM: tput: No value for $TERM and no -T specified
4:36:20 PM:    โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ
4:36:20 PM:    โ”‚                                                   โ”‚
4:36:20 PM:    โ”‚   โœ– Nuxt Fatal Error                              โ”‚
4:36:20 PM:    โ”‚                                                   โ”‚
4:36:20 PM:    โ”‚   TypeError: suffixes.flatMap is not a function   โ”‚
4:36:20 PM:    โ”‚                                                   โ”‚
4:36:20 PM:    โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ
4:36:20 PM: npm
4:36:20 PM: ERR! code ELIFECYCLE
4:36:21 PM: failed during stage 'building site': Build script returned non-zero exit code: 1
4:36:20 PM: npm
4:36:20 PM:  ERR! errno
4:36:20 PM:  1
4:36:20 PM: npm ERR! [email protected] generate: `nuxt generate`

My machine is running node v10.17
Seems like v11.6 is needed source

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.