@citruslime/create-boilerplate 3.0.0-beta.0 → 3.0.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
- package/template/eslint.config.js +1 -11
- package/template/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Citrus-Lime UI Library Create Boilerplate Script
|
|
2
2
|
|
|
3
|
-
A
|
|
3
|
+
A Vue 3, TailwindCSS template, for initialising new apps with the Citrus-Lime default configuration.
|
|
4
4
|
|
|
5
5
|

|
|
6
6
|

|
package/package.json
CHANGED
|
@@ -7,15 +7,5 @@ const compat = new FlatCompat({
|
|
|
7
7
|
|
|
8
8
|
export default [
|
|
9
9
|
...config,
|
|
10
|
-
...compat.extends('./.eslintrc-auto-import.json')
|
|
11
|
-
{
|
|
12
|
-
ignores: [
|
|
13
|
-
'dist',
|
|
14
|
-
'node_modules',
|
|
15
|
-
'**/*.html',
|
|
16
|
-
'auto-imports.d.ts',
|
|
17
|
-
'components.d.ts',
|
|
18
|
-
'typed-router.d.ts'
|
|
19
|
-
]
|
|
20
|
-
}
|
|
10
|
+
...compat.extends('./.eslintrc-auto-import.json')
|
|
21
11
|
];
|
package/template/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"private": true,
|
|
6
6
|
"scripts": {
|
|
7
7
|
"dev": "vite",
|
|
8
|
-
"build": "run-
|
|
8
|
+
"build": "run-s build-only type-check",
|
|
9
9
|
"build-only": "vite build",
|
|
10
10
|
"type-check": "vue-tsc --noEmit",
|
|
11
11
|
"serve": "vite preview",
|
|
@@ -13,4 +13,4 @@
|
|
|
13
13
|
"pre-commit-lint": "[[PACKAGE_MANAGER]] lint-staged",
|
|
14
14
|
"prepare": "cd [[ROOT_DIR]] && husky"
|
|
15
15
|
}
|
|
16
|
-
}
|
|
16
|
+
}
|