node-red-contrib-power-saver 4.2.2 → 4.2.3

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.
@@ -2,12 +2,14 @@ import navbar from "./navbar";
2
2
  import { path } from "@vuepress/utils";
3
3
  import { registerComponentsPlugin } from "@vuepress/plugin-register-components";
4
4
  import { searchPlugin } from "@vuepress/plugin-search";
5
- import { googleAnalyticsPlugin } from "@vuepress/plugin-google-analytics";
6
5
 
7
- import { defaultTheme, defineUserConfig } from "vuepress";
6
+ import { defaultTheme } from "@vuepress/theme-default";
7
+ import { defineUserConfig } from "vuepress";
8
+ import {viteBundler} from "@vuepress/bundler-vite"
8
9
 
9
10
  export default defineUserConfig({
10
11
  base: "/",
12
+ bundler: viteBundler({}),
11
13
  description: "A Node-RED node collection to save money on hourly changing power prices",
12
14
  head: [
13
15
  ["link", { rel: "shortcut icon", type: "image/x-icon", href: "euro.png" }],
@@ -24,9 +26,9 @@ export default defineUserConfig({
24
26
  plugins: [
25
27
  registerComponentsPlugin({ componentsDir: path.resolve(__dirname, "./components") }),
26
28
  searchPlugin({}),
27
- googleAnalyticsPlugin({
28
- id: "G-Z2QNNCDQZG",
29
- }),
29
+ // googleAnalyticsPlugin({
30
+ // id: "G-Z2QNNCDQZG",
31
+ // }),
30
32
  ],
31
33
  theme: defaultTheme({
32
34
  contributors: false,
@@ -79,4 +81,5 @@ export default defineUserConfig({
79
81
  "/changelog/": [{ text: "Changelog", children: ["/changelog/README.md"] }],
80
82
  },
81
83
  }),
84
+ title: "PowerSaver"
82
85
  });
package/docs/README.md CHANGED
@@ -7,7 +7,7 @@ heroText: node-red-contrib-power-saver
7
7
  tagline: A collection of nodes to Node-RED that automates saving money on variable electricity prices
8
8
  actions:
9
9
  - text: Guide
10
- link: /guide
10
+ link: /guide/
11
11
  type: primary
12
12
  - text: Nodes
13
13
  link: /nodes/
@@ -7,6 +7,9 @@ sidebarDepth: 1
7
7
 
8
8
  List the most significant changes.
9
9
 
10
+ ## 4.2.3
11
+
12
+ - Update dependencies
10
13
 
11
14
  ## 4.2.2
12
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-red-contrib-power-saver",
3
- "version": "4.2.2",
3
+ "version": "4.2.3",
4
4
  "description": "A module for Node-RED that you can use to turn on and off a switch based on power prices",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -46,24 +46,24 @@
46
46
  "url": "https://github.com/ottopaulsen/node-red-contrib-power-saver.git"
47
47
  },
48
48
  "devDependencies": {
49
- "@vuepress/bundler-vite": "2.0.0-beta.67",
50
- "@vuepress/plugin-google-analytics": "2.0.0-beta.67",
51
- "@vuepress/plugin-register-components": "2.0.0-beta.67",
52
- "@vuepress/plugin-search": "2.0.0-beta.67",
53
- "@vuepress/utils": "2.0.0-beta.67",
49
+ "@vuepress/bundler-vite": "2.0.0-rc.18",
50
+ "@vuepress/utils": "2.0.0-rc.18",
51
+ "@vuepress/plugin-register-components": "2.0.0-rc.54",
52
+ "@vuepress/plugin-search": "2.0.0-rc.55",
53
+ "@vuepress/theme-default": "2.0.0-rc.60",
54
54
  "chai": "^4.3.10",
55
- "eslint": "8.52.0",
55
+ "eslint": "9.14.0",
56
56
  "expect": "29.7.0",
57
- "mocha": "^10.2.0",
58
- "node-red": "^3.1.1",
59
- "node-red-node-test-helper": "0.3.2",
60
- "sass-loader": "^13.3.2",
61
- "vuepress": "2.0.0-beta.67"
57
+ "mocha": "^10.8.2",
58
+ "node-red": "^4.0.5",
59
+ "node-red-node-test-helper": "0.3.4",
60
+ "sass-loader": "^16.0.3",
61
+ "vuepress": "2.0.0-rc.18"
62
62
  },
63
63
  "dependencies": {
64
64
  "floating-vue": "2.0.0-beta.24",
65
65
  "lodash.clonedeep": "4.5.0",
66
- "luxon": "3.4.3",
66
+ "luxon": "3.5.0",
67
67
  "nano-time": "1.0.0",
68
68
  "node-fetch": "2.6.7"
69
69
  }