From 8276c2e4b136d8b0c9f3043849eec7ad2819c1e9 Mon Sep 17 00:00:00 2001 From: damyanpetev Date: Mon, 17 Nov 2025 14:23:24 +0200 Subject: [PATCH 1/2] chore: update package name, minor metadata adjustments --- README.md | 6 +++--- package-lock.json | 4 ++-- package.json | 8 ++++---- scripts/_package.json | 10 +++++----- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index af27980..d378a99 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# igc-grid-lite -[![Node.js CI](https://github.com/IgniteUI/igc-grid-lite/actions/workflows/node.js.yml/badge.svg)](https://github.com/IgniteUI/igc-grid-lite/actions/workflows/node.js.yml) -[![Coverage Status](https://coveralls.io/repos/github/IgniteUI/igc-grid-lite/badge.svg?branch=master)](https://coveralls.io/github/IgniteUI/igc-grid-lite?branch=master) +# Ignite UI Grid Lite +[![Node.js CI](https://github.com/IgniteUI/igniteui-grid-lite/actions/workflows/node.js.yml/badge.svg)](https://github.com/IgniteUI/igniteui-grid-lite/actions/workflows/node.js.yml) +[![Coverage Status](https://coveralls.io/repos/github/IgniteUI/igniteui-grid-lite/badge.svg?branch=master)](https://coveralls.io/github/IgniteUI/igniteui-grid-lite?branch=master) This is still a **very** early proof of concept for a web component based data grid. diff --git a/package-lock.json b/package-lock.json index 0c2bb4a..45e007a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "igc-grid-lite", + "name": "igniteui-grid-lite", "version": "0.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "igc-grid-lite", + "name": "igniteui-grid-lite", "version": "0.0.0", "license": "SEE LICENSE IN LICENSE", "dependencies": { diff --git a/package.json b/package.json index 156ae22..6ef9f96 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "igc-grid-lite", + "name": "igniteui-grid-lite", "version": "0.0.0", "description": "Web component data grid following open-wc recommendations", "keywords": [ @@ -7,11 +7,11 @@ "web-component", "lit-element" ], - "license": "SEE LICENSE IN LICENSE", - "author": "igc-grid-lite", + "license": "MIT", + "author": "Infragistics", "repository": { "type": "git", - "url": "git+https://github.com/IgniteUI/igc-grid-lite.git" + "url": "git+https://github.com/IgniteUI/igniteui-grid-lite.git" }, "exports": { ".": "./dist/src/index.js", diff --git a/scripts/_package.json b/scripts/_package.json index 8bcb016..dae54cc 100644 --- a/scripts/_package.json +++ b/scripts/_package.json @@ -1,10 +1,10 @@ { - "name": "igc-grid-lite", + "name": "igniteui-grid-lite", "version": "0.0.0", "description": "Web component data grid following open-wc recommendations", "keywords": ["lit", "web-component", "lit-element"], - "license": "SEE LICENSE IN LICENSE.mds", - "author": "igc-grid-lite", + "license": "MIT", + "author": "Infragistics", "exports": { ".": { "types": "./index.d.ts", @@ -19,10 +19,10 @@ "sideEffects": false, "repository": { "type": "git", - "url": "git+https://github.com/igniteui/igc-grid-lite.git" + "url": "git+https://github.com/igniteui/igniteui-grid-lite.git" }, "bugs": { - "url": "https://github.com/igniteui/igc-grid-lite/issues" + "url": "https://github.com/igniteui/igniteui-grid-lite/issues" }, "engines": { "node": ">=20" From be8a85748a744b8ea431b07ef3da73362589cde2 Mon Sep 17 00:00:00 2001 From: Borislav Traykov Date: Mon, 17 Nov 2025 14:38:25 +0200 Subject: [PATCH 2/2] Add NODE_AUTH_TOKEN to npm publish step Mandatory for initial npm publish --- .github/workflows/npm-publish.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index aaab29a..a79f844 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -42,3 +42,5 @@ jobs: - name: Publish the package run: npm publish --tag ${NPM_TAG} working-directory: dist + env: + NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}