Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit e7ef3a9

Browse files
sgraeweclarkdo
andcommitted
fix: Duplicate key 'devModules' (#273)
Co-authored-by: Xin Du (Clark) <clark.duxin@gmail.com>
1 parent 625ea1a commit e7ef3a9

File tree

3 files changed

+19
-18
lines changed

3 files changed

+19
-18
lines changed

template/nuxt/nuxt.config.js

+10-11
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,19 @@ module.exports = {
7575
'@/plugins/antd-ui'
7676
<%_ } _%>
7777
],
78-
<%_ if (eslint) { _%>
78+
<%_ if (eslint || ui === 'tailwind') { _%>
7979
/*
80-
** Nuxt.js devModules
80+
** Nuxt.js dev-modules
8181
*/
8282
devModules: [
83+
<%_ if (eslint) { _%>
84+
// Doc: https://github.com/nuxt-community/eslint-module
8385
'@nuxtjs/eslint-module',
86+
<%_ } _%>
87+
<%_ if (ui === 'tailwind') { _%>
88+
// Doc: https://github.com/nuxt-community/nuxt-tailwindcss
89+
'@nuxtjs/tailwindcss'
90+
<%_ } _%>
8491
],
8592
<%_ } _%>
8693
/*
@@ -91,7 +98,7 @@ module.exports = {
9198
// Doc: https://bootstrap-vue.js.org/docs/
9299
'bootstrap-vue/nuxt',
93100
<%_ } else if (ui === 'bulma') { _%>
94-
// Doc:https://github.com/nuxt-community/modules/tree/master/packages/bulma
101+
// Doc: https://github.com/nuxt-community/modules/tree/master/packages/bulma
95102
'@nuxtjs/bulma',
96103
<%_ } else if (ui === 'buefy') { _%>
97104
// Doc: https://buefy.github.io/#/documentation
@@ -107,14 +114,6 @@ module.exports = {
107114
'@nuxtjs/pwa',
108115
<%_ } _%>
109116
],
110-
<%_ if (ui === 'tailwind') { _%>
111-
/*
112-
** Nuxt.js dev-modules
113-
*/
114-
devModules: [
115-
'@nuxtjs/tailwindcss'
116-
],
117-
<%_ } _%>
118117
<%_ if (axios) { _%>
119118
/*
120119
** Axios module configuration

test/snapshots/index.test.js.md

+9-7
Original file line numberDiff line numberDiff line change
@@ -385,9 +385,10 @@ Generated by [AVA](https://ava.li).
385385
plugins: [␊
386386
],␊
387387
/*␊
388-
** Nuxt.js devModules
388+
** Nuxt.js dev-modules
389389
*/␊
390390
devModules: [␊
391+
// Doc: https://github.com/nuxt-community/eslint-module␊
391392
'@nuxtjs/eslint-module',␊
392393
],␊
393394
/*␊
@@ -2445,7 +2446,7 @@ Generated by [AVA](https://ava.li).
24452446
** Nuxt.js modules␊
24462447
*/␊
24472448
modules: [␊
2448-
// Doc:https://github.com/nuxt-community/modules/tree/master/packages/bulma␊
2449+
// Doc: https://github.com/nuxt-community/modules/tree/master/packages/bulma␊
24492450
'@nuxtjs/bulma',␊
24502451
],␊
24512452
/*␊
@@ -2831,17 +2832,18 @@ Generated by [AVA](https://ava.li).
28312832
plugins: [␊
28322833
],␊
28332834
/*␊
2834-
** Nuxt.js modules␊
2835-
*/␊
2836-
modules: [␊
2837-
],␊
2838-
/*␊
28392835
** Nuxt.js dev-modules␊
28402836
*/␊
28412837
devModules: [␊
2838+
// Doc: https://github.com/nuxt-community/nuxt-tailwindcss␊
28422839
'@nuxtjs/tailwindcss'␊
28432840
],␊
28442841
/*␊
2842+
** Nuxt.js modules␊
2843+
*/␊
2844+
modules: [␊
2845+
],␊
2846+
/*␊
28452847
** Build configuration␊
28462848
*/␊
28472849
build: {␊

test/snapshots/index.test.js.snap

16 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)