auto-terminal-profile 1.1.1 → 2.0.0

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.
@@ -1,5 +1,3 @@
1
- #! /usr/bin/env node
2
-
3
1
  import {disableAutomaticSwitching} from '../functions/index.js';
4
2
 
5
3
  export async function disable() {
package/changelog.md CHANGED
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [2.0.0](https://github.com/ptrkcsk/terminal-profile/compare/v1.1.1...v2.0.0) – 2023-05-10
9
+
10
+ ### Added
11
+
12
+ - Support for Node.js v20
13
+
14
+ ### Removed
15
+
16
+ - **BREAKING**: Support for Node.js v14
17
+
8
18
  ## [1.1.1](https://github.com/patrik-csak/auto-terminal-profile/compare/v1.1.0...v1.1.1) – 2023-03-22
9
19
 
10
20
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "auto-terminal-profile",
3
- "version": "1.1.1",
3
+ "version": "2.0.0",
4
4
  "description": "Automatically switch the macOS Terminal profile based on the system-wide dark / light appearance mode",
5
5
  "keywords": [
6
6
  "macos",
@@ -19,21 +19,21 @@
19
19
  "test": "xo"
20
20
  },
21
21
  "dependencies": {
22
- "commander": "^9.3.0",
23
- "conf": "^10.1.2",
22
+ "commander": "^10.0.1",
23
+ "conf": "^11.0.1",
24
24
  "dark-mode": "^4.0.0",
25
25
  "env-paths": "^3.0.0",
26
- "execa": "^6.1.0",
26
+ "execa": "^7.1.1",
27
27
  "pupa": "^3.1.0",
28
28
  "read-pkg-up": "^9.1.0",
29
- "terminal-profile": "^1.2.0",
29
+ "terminal-profile": "^2.0.0",
30
30
  "untildify": "^4.0.0"
31
31
  },
32
32
  "devDependencies": {
33
- "xo": "^0.53.1"
33
+ "xo": "^0.54.2"
34
34
  },
35
35
  "engines": {
36
- "node": ">=14 <=19"
36
+ "node": ">=16 <=20"
37
37
  },
38
38
  "os": [
39
39
  "darwin"