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

Commit e7211b3

Browse files
authored
fix(templates): remove not being maintained vuesax (#795)
1 parent ed17e67 commit e7211b3

File tree

10 files changed

+0
-287
lines changed

10 files changed

+0
-287
lines changed

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ yarn create nuxt-app <my-project>
5151
- [Windi CSS](https://github.com/windicss/windicss)
5252
- [Vant](https://github.com/youzan/vant)
5353
- [View UI](https://www.iviewui.com/)
54-
- [Vuesax](https://github.com/lusaxweb/vuesax)
5554
- [Vuetify](https://github.com/vuetifyjs/vuetify)
5655
1. Nuxt.js modules:
5756
- [Axios - Promise based HTTP client](https://github.com/nuxt-community/axios-module)

packages/cna-template/template/frameworks/vuesax/components/VuesaxLogo.vue

-16
This file was deleted.

packages/cna-template/template/frameworks/vuesax/package.json

-6
This file was deleted.

packages/cna-template/template/frameworks/vuesax/pages/index.vue

-157
This file was deleted.

packages/cna-template/template/frameworks/vuesax/plugins/vuesax.js

-6
This file was deleted.

packages/cna-template/template/nuxt/nuxt.config.js

-4
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@
5353
'tachyons/css/tachyons.css'
5454
<%_ } else if (ui === 'framevuerk') { _%>
5555
'framevuerk/dist/framevuerk-nuxt.min.css'
56-
<%_ } else if (ui === 'vuesax') { _%>
57-
'vuesax/dist/vuesax.css'
5856
<%_ } else if (ui === 'vant') { _%>
5957
'vant/lib/index.css'
6058
<%_ } _%>
@@ -72,8 +70,6 @@
7270
'@/plugins/balm-ui'
7371
<%_ } else if (ui === 'framevuerk') { _%>
7472
'@/plugins/framevuerk'
75-
<%_ } else if (ui === 'vuesax') { _%>
76-
'@/plugins/vuesax'
7773
<%_ } else if (ui === 'vant') { _%>
7874
'@/plugins/vant'
7975
<%_ } _%>

packages/create-nuxt-app/lib/prompts.js

-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ module.exports = [
4444
{ name: 'Windi CSS', value: 'windicss' },
4545
{ name: 'Vant', value: 'vant' },
4646
{ name: 'View UI', value: 'view-ui' },
47-
{ name: 'Vuesax', value: 'vuesax' },
4847
{ name: 'Vuetify.js', value: 'vuetify' }
4948
],
5049
default: 'none'

packages/create-nuxt-app/test/snapshots/index.test.js.md

-92
Original file line numberDiff line numberDiff line change
@@ -1710,98 +1710,6 @@ Generated by [AVA](https://avajs.dev).
17101710
}␊
17111711
`
17121712

1713-
## verify ui: Vuesax
1714-
1715-
> Generated files
1716-
1717-
[
1718-
'.editorconfig',
1719-
'.gitignore',
1720-
'README.md',
1721-
'assets/README.md',
1722-
'components/Logo.vue',
1723-
'components/README.md',
1724-
'components/VuesaxLogo.vue',
1725-
'layouts/README.md',
1726-
'layouts/default.vue',
1727-
'middleware/README.md',
1728-
'nuxt.config.js',
1729-
'package.json',
1730-
'pages/README.md',
1731-
'pages/index.vue',
1732-
'plugins/README.md',
1733-
'plugins/vuesax.js',
1734-
'static/README.md',
1735-
'static/favicon.ico',
1736-
'store/README.md',
1737-
]
1738-
1739-
> package.json
1740-
1741-
{
1742-
dependencies: {
1743-
boxicons: '^2.0.7',
1744-
'core-js': '^3.13.0',
1745-
nuxt: '^2.15.6',
1746-
vuesax: '^4.0.1-alpha.25',
1747-
},
1748-
devDependencies: {},
1749-
private: true,
1750-
scripts: {
1751-
build: 'nuxt build',
1752-
dev: 'nuxt',
1753-
generate: 'nuxt generate',
1754-
start: 'nuxt start',
1755-
},
1756-
}
1757-
1758-
> Generated nuxt.config.js
1759-
1760-
`export default {␊
1761-
// Global page headers: https://go.nuxtjs.dev/config-head␊
1762-
head: {␊
1763-
title: 'output',␊
1764-
htmlAttrs: {␊
1765-
lang: 'en'␊
1766-
},␊
1767-
meta: [␊
1768-
{ charset: 'utf-8' },␊
1769-
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },␊
1770-
{ hid: 'description', name: 'description', content: '' },␊
1771-
{ name: 'format-detection', content: 'telephone=no' }␊
1772-
],␊
1773-
link: [␊
1774-
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }␊
1775-
]␊
1776-
},␊
1777-
1778-
// Global CSS: https://go.nuxtjs.dev/config-css␊
1779-
css: [␊
1780-
'vuesax/dist/vuesax.css'␊
1781-
],␊
1782-
1783-
// Plugins to run before rendering page: https://go.nuxtjs.dev/config-plugins␊
1784-
plugins: [␊
1785-
'@/plugins/vuesax'␊
1786-
],␊
1787-
1788-
// Auto import components: https://go.nuxtjs.dev/config-components␊
1789-
components: true,␊
1790-
1791-
// Modules for dev and build (recommended): https://go.nuxtjs.dev/config-modules␊
1792-
buildModules: [␊
1793-
],␊
1794-
1795-
// Modules: https://go.nuxtjs.dev/config-modules␊
1796-
modules: [␊
1797-
],␊
1798-
1799-
// Build Configuration: https://go.nuxtjs.dev/config-build␊
1800-
build: {␊
1801-
}␊
1802-
}␊
1803-
`
1804-
18051713
## verify ui: Vuetify.js
18061714

18071715
> Generated files
Binary file not shown.

renovate.json

-4
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,6 @@
4848
{
4949
"matchPackageNames": ["nightwatch", "chromedriver"],
5050
"groupName": "nightwatch packages"
51-
},
52-
{
53-
"matchPackageNames": ["boxicons", "vuesax"],
54-
"groupName": "vuesax packages"
5551
}
5652
]
5753
}

0 commit comments

Comments
 (0)