From 797127a3ea5c664406cac9cebc0aa87765c02bc1 Mon Sep 17 00:00:00 2001 From: ilbrando Date: Wed, 19 Jun 2024 17:51:35 +0200 Subject: [PATCH] First release (#2) * package file for eslint-plugin * rush change * Remove git config user from ci pipeline * Use node v21 * Remove --production from rush rebuild in ci pipeline --- .github/workflows/ci.yml | 18 +++++++++--------- .../first-release_2024-06-19-15-25.json | 10 ++++++++++ tools/eslint-plugin/package.json | 6 ++++++ 3 files changed, 25 insertions(+), 9 deletions(-) create mode 100644 common/changes/@ilbrando/eslint-plugin/first-release_2024-06-19-15-25.json diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5eb5779..90ef9aa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,9 +1,9 @@ name: CI on: push: - branches: [ "main" ] + branches: ["main"] pull_request: - branches: [ "main" ] + branches: ["main"] jobs: build: runs-on: ubuntu-latest @@ -11,17 +11,17 @@ jobs: - uses: actions/checkout@v3 with: fetch-depth: 2 - - name: Git config user - uses: snow-actions/git-config-user@v1.0.0 - with: - name: # Service Account's Name - email: # Service Account's Email Address + # - name: Git config user + # uses: snow-actions/git-config-user@v1.0.0 + # with: + # name: # Service Account's Name + # email: # Service Account's Email Address - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 21 - name: Verify Change Logs run: node common/scripts/install-run-rush.js change --verify - name: Rush Install run: node common/scripts/install-run-rush.js install - name: Rush rebuild - run: node common/scripts/install-run-rush.js rebuild --verbose --production + run: node common/scripts/install-run-rush.js rebuild --verbose diff --git a/common/changes/@ilbrando/eslint-plugin/first-release_2024-06-19-15-25.json b/common/changes/@ilbrando/eslint-plugin/first-release_2024-06-19-15-25.json new file mode 100644 index 0000000..11719d2 --- /dev/null +++ b/common/changes/@ilbrando/eslint-plugin/first-release_2024-06-19-15-25.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@ilbrando/eslint-plugin", + "comment": "Small changes to package.json", + "type": "none" + } + ], + "packageName": "@ilbrando/eslint-plugin" +} \ No newline at end of file diff --git a/tools/eslint-plugin/package.json b/tools/eslint-plugin/package.json index 018516f..708e9c1 100644 --- a/tools/eslint-plugin/package.json +++ b/tools/eslint-plugin/package.json @@ -6,6 +6,12 @@ "author": { "name": "ilbrando" }, + "repository": { + "type": "git", + "url": "https://github.com/ilbrando/simple-form.git", + "directory": "tools/eslint-plugin" + }, + "homepage": "https://github.com/ilbrando/simple-form", "main": "dist/index.js", "types": "dist/index.d.ts", "type": "module",