Skip to content

Commit

Permalink
fix: new parser
Browse files Browse the repository at this point in the history
  • Loading branch information
lukekarrys committed Mar 2, 2023
1 parent ace03b0 commit 922a59f
Show file tree
Hide file tree
Showing 87 changed files with 1,902 additions and 108,932 deletions.
2 changes: 1 addition & 1 deletion .commitlintrc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* This file is automatically added by @npmcli/template-oss. Do not edit. */
/* This file is automatically updated by @npmcli/template-oss. Do not edit. */

module.exports = {
extends: ['@commitlint/config-conventional'],
Expand Down
11 changes: 3 additions & 8 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* This file is automatically added by @npmcli/template-oss. Do not edit. */
/* This file is automatically updated by @npmcli/template-oss. Do not edit. */

'use strict'

Expand All @@ -10,11 +10,6 @@ const localConfigs = readdir(__dirname)

module.exports = {
root: true,
ignorePatterns: [
'workspaces/**',
],
extends: [
'@npmcli',
...localConfigs,
],
ignorePatterns: ['workspaces/**'],
extends: ['@npmcli', ...localConfigs],
}
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# This file is automatically added by @npmcli/template-oss. Do not edit.
# This file is automatically updated by @npmcli/template-oss. Do not edit.

* @npm/cli-team
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# This file is automatically added by @npmcli/template-oss. Do not edit.
# This file is automatically updated by @npmcli/template-oss. Do not edit.

name: Bug
description: File a bug/issue
title: "[BUG] <title>"
labels: [ Bug, Needs Triage ]
labels: [Bug, Needs Triage]

body:
- type: checkboxes
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# This file is automatically added by @npmcli/template-oss. Do not edit.
# This file is automatically updated by @npmcli/template-oss. Do not edit.

blank_issues_enabled: true
2 changes: 1 addition & 1 deletion .github/actions/audit/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file is automatically added by @npmcli/template-oss. Do not edit.
# This file is automatically updated by @npmcli/template-oss. Do not edit.

name: Audit

Expand Down
2 changes: 1 addition & 1 deletion .github/actions/changed-files/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file is automatically added by @npmcli/template-oss. Do not edit.
# This file is automatically updated by @npmcli/template-oss. Do not edit.

name: Get Changed Files

Expand Down
2 changes: 1 addition & 1 deletion .github/actions/changed-workspaces/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file is automatically added by @npmcli/template-oss. Do not edit.
# This file is automatically updated by @npmcli/template-oss. Do not edit.

name: Get Changed Workspaces

Expand Down
2 changes: 1 addition & 1 deletion .github/actions/conclude-check/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file is automatically added by @npmcli/template-oss. Do not edit.
# This file is automatically updated by @npmcli/template-oss. Do not edit.

name: Conclude Check
description: Conclude a check
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/create-check/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file is automatically added by @npmcli/template-oss. Do not edit.
# This file is automatically updated by @npmcli/template-oss. Do not edit.

name: Create Check
description: Create a check and associate it with a sha
Expand All @@ -15,7 +15,7 @@ inputs:
required: true
job-status:
description: Status of the check being created
default: 'in_progress'
default: "in_progress"

outputs:
check-id:
Expand Down
8 changes: 4 additions & 4 deletions .github/actions/deps/action.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# This file is automatically added by @npmcli/template-oss. Do not edit.
# This file is automatically updated by @npmcli/template-oss. Do not edit.

name: Dependencies

inputs:
command:
description: command to run for the dependencies step
default: 'install --ignore-scripts --no-audit --no-fund'
default: "install --ignore-scripts --no-audit --no-fund"
flags:
description: extra flags to pass to the dependencies step
default: ''
default: ""
shell:
description: shell to run on
default: 'bash'
default: "bash"

runs:
using: composite
Expand Down
13 changes: 6 additions & 7 deletions .github/actions/get-workspaces/action.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
# This file is automatically added by @npmcli/template-oss. Do not edit.
# This file is automatically updated by @npmcli/template-oss. Do not edit.

name: 'Get Workspaces'
description: 'Get workspaces'
name: "Get Workspaces"

inputs:
files:
description: 'files'
description: "files"

outputs:
flags:
description: 'workspace flags'
description: "workspace flags"

runs:
using: 'node16'
main: 'index.js'
using: "node16"
main: "index.js"
Loading

0 comments on commit 922a59f

Please sign in to comment.