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

Commit 4f9706f

Browse files
Dmitry Sharshakovclarkdo
Dmitry Sharshakov
andcommitted
feat: use ESM syntax for Nuxt config (#195)
Co-Authored-By: Clark <clark.duxin@gmail.com>
1 parent 30f9418 commit 4f9706f

File tree

3 files changed

+27
-12
lines changed

3 files changed

+27
-12
lines changed

saofile.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -118,13 +118,15 @@ module.exports = {
118118
const linter = this.answers.features.includes('linter')
119119
const prettier = this.answers.features.includes('prettier')
120120
const axios = this.answers.features.includes('axios')
121+
const esm = this.answers.server === 'none'
121122

122123
return {
123124
edge,
124125
pwa: pwa ? 'yes' : 'no',
125126
eslint: linter ? 'yes' : 'no',
126127
prettier: prettier ? 'yes' : 'no',
127-
axios: axios ? 'yes' : 'no'
128+
axios: axios ? 'yes' : 'no',
129+
esm
128130
}
129131
},
130132
actions() {

template/_.eslintrc.js

+2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ module.exports = {
2222
],<% } %>
2323
// add your custom rules here
2424
rules: {
25+
<% if (!esm){ -%>
2526
'nuxt/no-cjs-in-config': 'off'
27+
<% } -%>
2628
}
2729
}

template/nuxt/nuxt.config.js

+22-11
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
1-
<% if (server === 'adonis') { %>const { resolve } = require('path')
1+
<% if (esm) { -%>
2+
<% if (ui === 'vuetify') { -%>
3+
import VuetifyLoaderPlugin from 'vuetify-loader/lib/plugin'
4+
<% } -%>
5+
import pkg from './package'
6+
<% } else if (server === 'adonis') { -%>
7+
const { resolve } = require('path')
28
const pkg = require('../package')
3-
<% } else { %>const pkg = require('./package')
4-
<% } %>
5-
<% if (ui === 'vuetify') { %>
6-
const VuetifyLoaderPlugin = require('vuetify-loader/lib/plugin')
7-
<% } %>
9+
<%} else { -%>
10+
const pkg = require('./package')
11+
<% } -%>
12+
<% if (!esm) { -%>
13+
<% if (ui === 'vuetify') { %>const VuetifyLoaderPlugin = require('vuetify-loader/lib/plugin')<% } %>
14+
<% } -%>
15+
16+
<% if (esm) { -%>
17+
export default {
18+
<% } else { -%>
819
module.exports = {
20+
<% } -%>
921
mode: '<%= mode %>',
1022
<% if (server === 'adonis') { %>
1123
dev: process.env.NODE_ENV === 'development',
@@ -94,17 +106,16 @@ module.exports = {
94106
plugins: [new VuetifyLoaderPlugin()],
95107
loaders: {
96108
stylus: {
97-
import: ["~assets/style/variables.styl"]
109+
import: ['~assets/style/variables.styl']
98110
}
99-
},
100-
<% } %><% if (ui === 'element-ui') { %>
111+
},<% } %><% if (ui === 'element-ui') { %>
101112
transpile: [/^element-ui/],
102113
<% } %>
103114
/*
104115
** You can extend webpack config here
105116
*/
106-
extend(config, ctx) {
107-
<% if (eslint === 'yes') { %>// Run ESLint on save
117+
extend(config, ctx) {<% if (eslint === 'yes') { %>
118+
// Run ESLint on save
108119
if (ctx.isDev && ctx.isClient) {
109120
config.module.rules.push({
110121
enforce: 'pre',

0 commit comments

Comments
 (0)