@xy-planning-network/trees 0.7.0-rc-2 → 0.7.0-rc-4

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
@@ -63,8 +63,8 @@ Additional peer dependecies will be installed by NPM. If you are using NPM < 7 y
63
63
 
64
64
  ```js
65
65
  /* eslint-env node */
66
- export default = {
67
- extends: "./node_modules/@xy-planning-network/trees/config/eslint.ts",
66
+ module.exports = {
67
+ extends: "./node_modules/@xy-planning-network/trees/config/eslint.js",
68
68
  }
69
69
  ```
70
70
 
@@ -1,4 +1,5 @@
1
1
  /* eslint-env node */
2
+
2
3
  module.exports = {
3
4
  $schema: "http://json.schemastore.org/prettierrc",
4
5
  semi: false,
@@ -1,7 +1,8 @@
1
- import path from "path"
2
- import treesTheme from "./theme"
1
+ /* eslint-disable */
2
+ const path = require("path")
3
+ const treesTheme = require("./theme")
3
4
 
4
- export default {
5
+ module.exports = {
5
6
  content: [
6
7
  path.resolve(__dirname, "../src/lib-components/**/*.vue"),
7
8
  path.resolve(__dirname, "../src/composables/**/*.ts"),
@@ -1,5 +1,4 @@
1
1
  import colors from "tailwindcss/colors"
2
-
3
2
  export const brandColors = {
4
3
  blue: {
5
4
  50: "#C9E4F6",
@@ -41,7 +40,7 @@ export const brandColors = {
41
40
  }
42
41
 
43
42
  export default {
44
- gray: colors["neutral"], // adopt Tailwind - Neutral as the primary gray palette
43
+ // gray: colors["neutral"], // TODO: (spk) adopt Tailwind - Neutral as the primary gray palette?
45
44
  "xy-blue": {
46
45
  DEFAULT: brandColors["blue"][600],
47
46
  ...brandColors["blue"],
@@ -1,5 +1,4 @@
1
1
  import defaultTheme from "tailwindcss/defaultTheme"
2
-
3
2
  export default {
4
3
  display: ["Work Sans", ...defaultTheme.fontFamily.sans],
5
4
  sans: ["Inter var", ...defaultTheme.fontFamily.sans],
@@ -3,7 +3,7 @@ import colors from "./colors"
3
3
  import fontFamily from "./fontFamily"
4
4
 
5
5
  export default {
6
- animation: animation,
7
- colors: colors,
8
- fontFamily: fontFamily,
6
+ animation,
7
+ colors,
8
+ fontFamily,
9
9
  }