Skip to content

Commit b37a84f

Browse files
v1.0.3 (#11)
* data tables done * 1.0.3 * dashboard widgets, resizable, drag and drop, with actions done * persist layout to local storage done * v1.0.3 * data tables done * 1.0.3 * dashboard widgets, resizable, drag and drop, with actions done * persist layout to local storage done * chore: removed tracked dist files and empty directories & updated release workflow and gitignore * chore: updated husky pre-commit * chore: updated dependencies versions, ci/cd workflows, and fixed all lint & tc issues * fix: formatting issues --------- Co-authored-by: a-elkhiraooui-ciscode <a.elkhiraoui@ciscod.com>
1 parent 517868f commit b37a84f

37 files changed

Lines changed: 2604 additions & 6496 deletions

.github/workflows/cd-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches:
66
- master
7-
workflow_dispatch:
7+
# workflow_dispatch:
88

99
jobs:
1010
publish:
@@ -21,8 +21,8 @@ jobs:
2121
- name: Setup Node.js
2222
uses: actions/setup-node@v4
2323
with:
24-
node-version: "20"
25-
registry-url: "https://registry.npmjs.org"
24+
node-version: '20'
25+
registry-url: 'https://registry.npmjs.org'
2626

2727
- name: Install dependencies
2828
run: npm ci

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
node_modules
2-
dist
1+
node_modules/
2+
dist/
33
coverage
44
.vitest
55
.DS_Store
66
*.log
77
*.tsbuildinfo
88
.env*
9+

.husky/_/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# *
1+
*

.husky/pre-commit

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
#!/usr/bin/env sh
2-
. "$(dirname -- "$0")/_/husky.sh"
3-
41
npx lint-staged

.husky/pre-push

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/env sh
2-
. "$(dirname -- "$0")/_/husky.sh"
31

42
npm run typecheck
53
npm test

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# React TypeScript DeveloperKit (Template)
1+
# @ciscode/ui-widget-kit
22

33
Template repository for building reusable React TypeScript **npm libraries**
44
(components + hooks + utilities).

0 commit comments

Comments
 (0)