@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 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/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": "2.0.4",
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
  }
@@ -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
+ }
@@ -2,7 +2,7 @@
2
2
  const route = useRoute();
3
3
  </script>
4
4
 
5
- <style lang="postcss">
5
+ <style>
6
6
  /* stylelint-disable-next-line import-notation */
7
7
  @import 'tailwindcss';
8
8
  @import url('../../../ui/src/main.css');