Skip to content

Commit cff6d74

Browse files
committed
v1.0.6
1 parent 37fa53f commit cff6d74

File tree

7 files changed

+16
-67
lines changed

7 files changed

+16
-67
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Install Node.js
1616
uses: actions/setup-node@v4
1717
with:
18-
node-version: 10
18+
node-version: 20
1919

2020
- name: Run npm install and build
2121
run: |

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.6]
9+
10+
### Removed
11+
12+
- Removed fs-extra dependency
13+
814
## [1.0.5]
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 * as fs from 'node:fs';
4+
import fs from '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 * as fs from 'node:fs';
6+
import fs from 'fs';
77

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

package-lock.json

Lines changed: 2 additions & 60 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dinomite-studios/unity-azure-pipelines-tasks-lib",
3-
"version": "1.0.5",
3+
"version": "1.0.6",
44
"description": "A library containing common implementations for pipeline tasks available in the Unity Tools for Azure DevOps extension.",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -27,15 +27,13 @@
2727
"license": "MIT",
2828
"dependencies": {
2929
"azure-pipelines-task-lib": "^4.17.2",
30-
"fs-extra": "^11.2.0",
3130
"sanitize-filename": "^1.6.3",
3231
"tail": "^2.2.6"
3332
},
3433
"devDependencies": {
3534
"@types/chai": "^4.3.0",
3635
"@types/mocha": "^10.0.8",
3736
"@types/node": "^22.5.5",
38-
"@types/fs-extra": "^11.0.4",
3937
"@types/tail": "^2.2.3",
4038
"@types/q": "^1.5.8",
4139
"chai": "^4.5.0",

tsconfig.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@
1212
"outDir": "dist",
1313
"strict": true,
1414
"esModuleInterop": true,
15-
"forceConsistentCasingInFileNames": true
15+
"forceConsistentCasingInFileNames": true,
16+
"types": [
17+
"node"
18+
]
1619
},
1720
"exclude": [
1821
"node_modules",

0 commit comments

Comments
 (0)