Compare commits

..
4 changed files with 4 additions and 12 deletions
-4
View File
@@ -1,9 +1,5 @@
# @actions/glob Releases
## 0.6.1
- Fix a bad import for `minimatch`
## 0.6.0
- **Breaking change**: Package is now ESM-only
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "@actions/glob",
"version": "0.6.1",
"version": "0.6.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@actions/glob",
"version": "0.6.1",
"version": "0.6.0",
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.0",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@actions/glob",
"version": "0.6.1",
"version": "0.6.0",
"preview": true,
"description": "Actions glob lib",
"keywords": [
+1 -5
View File
@@ -2,14 +2,10 @@ import * as os from 'os'
import * as path from 'path'
import * as pathHelper from './internal-path-helper.js'
import assert from 'assert'
import minimatch from 'minimatch'
import {Minimatch, IMinimatch, IOptions as IMinimatchOptions} from 'minimatch'
import {MatchKind} from './internal-match-kind.js'
import {Path} from './internal-path.js'
type IMinimatch = minimatch.IMinimatch
type IMinimatchOptions = minimatch.IOptions
const {Minimatch} = minimatch
const IS_WINDOWS = process.platform === 'win32'
export class Pattern {