-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #136 from artichoke/lopopolo/rev-ver
Release v1.12.0
- Loading branch information
Showing
11 changed files
with
254 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -157,6 +157,14 @@ jobs: | |
- name: Checkout repository | ||
uses: actions/[email protected] | ||
|
||
- name: Setup Node.js runtime | ||
uses: actions/[email protected] | ||
with: | ||
node-version: "lts/*" | ||
|
||
- name: Install toolchain | ||
run: npm ci | ||
|
||
- name: Lint and check formatting with prettier | ||
run: npx prettier --check '**/*' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
lts/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
PATH | ||
remote: . | ||
specs: | ||
generate_third_party (1.11.0) | ||
generate_third_party (1.12.0) | ||
sorbet-runtime (~> 0.5) | ||
|
||
GEM | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"name": "@artichokeruby/generate_third_party", | ||
"version": "0.1.0", | ||
"private": true, | ||
"description": "Generate listings of third party licenses for Artichoke Ruby", | ||
"keywords": [ | ||
"license", | ||
"spdx", | ||
"rubygem", | ||
"ruby", | ||
"rust" | ||
], | ||
"homepage": "https://github.com/artichoke/generate_third_party/releases/latest", | ||
"bugs": "https://github.com/artichoke/generate_third_party/issues", | ||
"license": "MIT", | ||
"author": "Ryan Lopopolo <[email protected]> (https://hyperbo.la/)", | ||
"contributors": [ | ||
"Ryan Lopopolo <[email protected]> (https://hyperbo.la/)" | ||
], | ||
"repository": "github:artichoke/generate_third_party", | ||
"devDependencies": { | ||
"prettier": "^3.1.1" | ||
}, | ||
"eslintConfig": { | ||
"env": { | ||
"browser": true, | ||
"commonjs": true, | ||
"es6": true, | ||
"node": true | ||
}, | ||
"parserOptions": { | ||
"ecmaVersion": 2020, | ||
"sourceType": "module" | ||
} | ||
}, | ||
"scripts": { | ||
"fmt": "prettier --write \"**/*\"" | ||
} | ||
} |