Skip to content

Commit

Permalink
version and varble scss updated and automation done
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafee1100 committed Dec 27, 2023
1 parent 8d52f93 commit 31ba944
Show file tree
Hide file tree
Showing 4 changed files with 99 additions and 471 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Publish to npm

on:
release:
types: [created]
push:
branches: [master]

jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "16.x"
- name: Install dependencies
run: npm install
- name: Build library
run: npm run build
- name: Publish to npm
run: |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_AUTH_TOKEN }}" > .npmrc
npm publish
11 changes: 9 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,15 @@
"description": "Here we have listed all our design system files where. This deisgn system is exported for various products of iMS Systems. Change in this deisgn system would reflect change accross all products of iMS Systems. The design system\r is a customised version of bootstrap so bootstrap customisation docs and guidelines are followed for building the\r components for the system.",
"repository": {
"type": "git",
"url": "https://github.com/ims-systems-00/gns-design-system.git"
"url": "git+https://github.com/ims-systems-00/gns-design-system.git"
},
"author": "ims-systems-00",
"license": "ISC"
"license": "ISC",
"bugs": {
"url": "https://github.com/ims-systems-00/gns-design-system/issues"
},
"homepage": "https://github.com/ims-systems-00/gns-design-system#readme",
"keywords": [
"gns-design0system"
]
}
22 changes: 15 additions & 7 deletions src/assets/scss/app/custom/_type.scss
Original file line number Diff line number Diff line change
Expand Up @@ -49,26 +49,34 @@ p {
}
h1 {
font-size: $h1-font-size;
font-weight: $font-weight-normal;
font-weight: $font-weight-bold;
line-height: $h1-line-height;
}
h2 {
font-size: $h2-font-size;
font-weight: $font-weight-normal;
font-weight: $font-weight-bold;;
line-height: $h2-line-height;
}
h3 {
font-size: $h3-font-size;
font-weight: $font-weight-medium;
font-weight: $font-weight-bold;;
line-height: $h3-line-height;
}
h4,
h5,
h6 {
h4{
font-size: $h4-font-size;
font-weight: $font-weight-medium;
font-weight: $font-weight-bold;;
line-height: $h4-line-height;
}
h5{
font-size: $h5-font-size;
font-weight: $font-weight-bold;;
line-height: $h5-line-height;
}
h6 {
font-size: $h6-font-size;
font-weight: $font-weight-bold;;
line-height: $h6-line-height;
}
p {
font-size: $paragraph-font-size;
}
Expand Down
Loading

0 comments on commit 31ba944

Please sign in to comment.