auto-terminal-profile 1.1.1 → 2.1.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,22 @@ 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
+ ## [v2.1.0](https://github.com/ptrkcsk/terminal-profile/compare/v2.0.0...v2.1.0) – 2023-07-04
9
+
10
+ ### Changed
11
+
12
+ - Update dependencies
13
+
14
+ ## [2.0.0](https://github.com/ptrkcsk/terminal-profile/compare/v1.1.1...v2.0.0) – 2023-05-10
15
+
16
+ ### Added
17
+
18
+ - Support for Node.js v20
19
+
20
+ ### Removed
21
+
22
+ - **BREAKING**: Support for Node.js v14
23
+
8
24
  ## [1.1.1](https://github.com/patrik-csak/auto-terminal-profile/compare/v1.1.0...v1.1.1) – 2023-03-22
9
25
 
10
26
  ### 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.1.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": "^11.0.0",
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
- "read-pkg-up": "^9.1.0",
29
- "terminal-profile": "^1.2.0",
30
- "untildify": "^4.0.0"
28
+ "read-pkg-up": "^10.0.0",
29
+ "terminal-profile": "^2.0.0",
30
+ "untildify": "^5.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"
package/readme.md CHANGED
@@ -6,7 +6,7 @@ Automatically switch the macOS Terminal profile based on the system-wide dark /
6
6
 
7
7
  ## Prerequisites
8
8
 
9
- - [Node.js](https://nodejs.org/en/) 1419
9
+ - [Node.js](https://nodejs.org/en/) 1620
10
10
 
11
11
  ## Installation
12
12