@citruslime/create-boilerplate 2.0.4 → 3.0.0-beta.1
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/main.js +1 -1
- package/package.json +6 -2
- package/template/package.json +2 -2
- package/template/src/app.vue +1 -1
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/main.js
CHANGED
|
@@ -424,7 +424,7 @@ function forEachInDir (dir, callback) {
|
|
|
424
424
|
/**
|
|
425
425
|
* Throws an error to indicate that the current operation has been cancelled.
|
|
426
426
|
*
|
|
427
|
-
* @throws Operation cancelled error.
|
|
427
|
+
* @throws {Error} Operation cancelled error.
|
|
428
428
|
*/
|
|
429
429
|
function cancel () {
|
|
430
430
|
throw new Error('Operation was cancelled.');
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@citruslime/create-boilerplate",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "3.0.0-beta.1",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Citrus-Lime Ltd",
|
|
7
7
|
"url": "https://citruslime.com"
|
|
@@ -31,7 +31,11 @@
|
|
|
31
31
|
"minimist": "^1.2.8",
|
|
32
32
|
"prompts": "^2.4.2"
|
|
33
33
|
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@citruslime/config": "~0.0.0",
|
|
36
|
+
"@types/prompts": "^2.4.9"
|
|
37
|
+
},
|
|
34
38
|
"scripts": {
|
|
35
|
-
"lint": "eslint . --fix && stylelint **/*.{css,vue} --fix"
|
|
39
|
+
"lint": "eslint . --fix --cache && stylelint **/*.{css,vue} --fix --cache"
|
|
36
40
|
}
|
|
37
41
|
}
|
package/template/package.json
CHANGED
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"build-only": "vite build",
|
|
10
10
|
"type-check": "vue-tsc --noEmit",
|
|
11
11
|
"serve": "vite preview",
|
|
12
|
-
"lint": "eslint . --fix && stylelint **/*.{css,vue} --fix",
|
|
12
|
+
"lint": "eslint . --fix --cache && stylelint **/*.{css,vue} --fix --cache",
|
|
13
13
|
"pre-commit-lint": "[[PACKAGE_MANAGER]] lint-staged",
|
|
14
14
|
"prepare": "cd [[ROOT_DIR]] && husky"
|
|
15
15
|
}
|
|
16
|
-
}
|
|
16
|
+
}
|