@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Citrus-Lime UI Library Create Boilerplate Script
2
2
 
3
- A create package script for initialising new apps with the Citrus-Lime default configuration.
3
+ A Vue 3, TailwindCSS template, for initialising new apps with the Citrus-Lime default configuration.
4
4
 
5
5
  ![version](https://img.shields.io/npm/v/@citruslime/create-boilerplate/latest)
6
6
  ![version next](https://img.shields.io/npm/v/@citruslime/create-boilerplate/next)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@citruslime/create-boilerplate",
3
3
  "type": "module",
4
- "version": "3.0.0-beta.0",
4
+ "version": "3.0.0-beta.2",
5
5
  "author": {
6
6
  "name": "Citrus-Lime Ltd",
7
7
  "url": "https://citruslime.com"
@@ -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
  ];
@@ -5,7 +5,7 @@
5
5
  "private": true,
6
6
  "scripts": {
7
7
  "dev": "vite",
8
- "build": "run-p type-check build-only",
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
+ }