cja-phoenix 0.18.4 → 0.18.5

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
@@ -20,7 +20,7 @@ npm run build
20
20
  npm run build:link
21
21
 
22
22
  # builds the library for publishing, requires a version bump
23
- npm run docs:publish
23
+ npm run publish:lib
24
24
  ```
25
25
 
26
26
  ## Develop and test locally
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "cja-phoenix",
3
- "version": "0.18.4",
3
+ "version": "0.18.5",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "build": "rimraf dist && vue-tsc && vite build",
7
7
  "build:link": "rimraf dist && vue-tsc && vite build && npm link",
8
- "publish": "npm publish",
8
+ "publish:lib": "npm run build && npm publish",
9
9
  "story": "histoire build && histoire dev"
10
10
  },
11
11
  "peerDependencies": {
@@ -1,3 +1,5 @@
1
+ @use "colors" as *;
2
+
1
3
  @mixin text-gradient-dark-blue {
2
4
  display: inline-block; /* inline-block assures gradient display across all text */
3
5
  background-image: linear-gradient(90deg, $extra-dark-blue, $main-blue);