Skip to content

Commit 37fa53f

Browse files
committed
v1.0.5
1 parent 4278c6a commit 37fa53f

File tree

6 files changed

+179
-146
lines changed

6 files changed

+179
-146
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.0.5]
9+
10+
### Changed
11+
12+
- Updated dependencies
13+
814
## [1.0.4]
915

1016
### Changed

lib/unity-tool-runner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Dinomite. All rights reserved.
22
// Licensed under the MIT License. See LICENSE in the project root for license information.
33

4-
import fs = require('fs-extra');
4+
import * as fs from 'node:fs';
55
import { ToolRunner } from "azure-pipelines-task-lib/toolrunner";
66
import { UnityLogStreamer } from './unity-log-streamer';
77
import { Utilities } from './utilities';

lib/unity-version-tools.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
import { UnityVersionInfoResult } from './models';
55
import path = require('path');
6-
import fs = require('fs');
6+
import * as fs from 'node:fs';
77

88
/**
99
* A collection of static functions to determine the last used Unity version of a project

0 commit comments

Comments
 (0)