Compare commits
13 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
1f6b18ef9e | ||
|
e1bbe2470e | ||
|
387d5adfb8 | ||
|
b742b38ed4 | ||
|
6c1ba36404 | ||
|
950b7f3bfc | ||
|
fb1d6b1fe3 | ||
|
dcc8a0a840 | ||
|
014762c46e | ||
|
e2d8be7258 | ||
|
22ae8501a5 | ||
|
8825b3f084 | ||
|
01963624e8 |
27
.gitea/workflows/publish.yml
Normal file
27
.gitea/workflows/publish.yml
Normal file
|
@ -0,0 +1,27 @@
|
|||
name: Publish visua Package
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '18'
|
||||
|
||||
- name: Configure .npmrc for Gitea registry
|
||||
run: |
|
||||
echo "@cellule-financiere-pmo:registry=https://dgfipntic.imfr.cgi.com/api/packages/Cellule-financiere-transverse-PMO/npm/" > ~/.npmrc
|
||||
echo "//dgfipntic.imfr.cgi.com/api/packages/Cellule-financiere-transverse-PMO/npm/:_authToken=${{ secrets.NPM_TOKEN }}" >> ~/.npmrc
|
||||
|
||||
- name: Publish to Gitea NPM registry
|
||||
run: npm publish
|
|
@ -1,14 +0,0 @@
|
|||
default:
|
||||
image: node:latest
|
||||
|
||||
stages:
|
||||
- deploy
|
||||
|
||||
publish-npm:
|
||||
stage: deploy
|
||||
script:
|
||||
- echo "@cellule-financiere-pmo:registry=https://${CI_SERVER_HOST}/api/v4/projects/${CI_PROJECT_ID}/packages/npm/" > .npmrc
|
||||
- echo "//${CI_SERVER_HOST}/api/v4/projects/${CI_PROJECT_ID}/packages/npm/:_authToken=${CI_JOB_TOKEN}" >> .npmrc
|
||||
- npm publish
|
||||
only:
|
||||
- tags
|
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -5,10 +5,20 @@ All notable changes to this project will be documented in this file.
|
|||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [1.1.1] - 2025-07-18
|
||||
## [1.1.3] - 2025-07-18
|
||||
### Added
|
||||
- Added map css files.
|
||||
|
||||
## [1.1.2] - 2025-07-18
|
||||
### Added
|
||||
- Fixed deployment failures.
|
||||
|
||||
## [1.1.1] - 2025-07-18
|
||||
### Changed
|
||||
- CSS typography classes have been replaced by css module classes.
|
||||
|
||||
|
||||
|
||||
## [1.1.0] - 2025-07-16
|
||||
### Added
|
||||
- CSS typography classes.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Summary
|
||||
|
||||
**Current version : 1.1.1**
|
||||
**Current version : 1.1.3**
|
||||
|
||||
This project defines the *visual foundations* of the **design system** and establishes a strategy for structuring styles to guarantee their *reusability* in the design of graphic interfaces.
|
||||
|
||||
|
@ -20,7 +20,9 @@ The project is organized into three main modules:
|
|||
|
||||
- [**output**](./output/)
|
||||
|
||||
Contains the Generated final [`variables.css`](./output/variables.css) file, containing all global CSS variables ready for integration into front-end projects.
|
||||
* Contains [`variables.css`](./output/variables.css) file, containing all global CSS variables ready for integration into front-end projects.
|
||||
|
||||
* Contains [`typography.module.css`](./output/typography.module.css) file, containing the CSS classes defining the different typographic variants available.
|
||||
|
||||
|
||||
## Important
|
||||
|
|
14
package-lock.json
generated
14
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "visua",
|
||||
"version": "1.1.1",
|
||||
"name": "@cellule-financiere-pmo/visua",
|
||||
"version": "1.1.4",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "visua",
|
||||
"version": "1.1.1",
|
||||
"name": "@cellule-financiere-pmo/visua",
|
||||
"version": "1.1.4",
|
||||
"license": "UNLICENSED",
|
||||
"devDependencies": {
|
||||
"sass": "^1.89.2"
|
||||
|
@ -475,9 +475,9 @@
|
|||
}
|
||||
},
|
||||
"node_modules/sass": {
|
||||
"version": "1.89.2",
|
||||
"resolved": "https://registry.npmjs.org/sass/-/sass-1.89.2.tgz",
|
||||
"integrity": "sha512-xCmtksBKd/jdJ9Bt9p7nPKiuqrlBMBuuGkQlkhZjjQk3Ty48lv93k5Dq6OPkKt4XwxDJ7tvlfrTa1MPA9bf+QA==",
|
||||
"version": "1.90.0",
|
||||
"resolved": "https://registry.npmjs.org/sass/-/sass-1.90.0.tgz",
|
||||
"integrity": "sha512-9GUyuksjw70uNpb1MTYWsH9MQHOHY6kwfnkafC24+7aOMZn9+rVMBxRbLvw756mrBFbIsFg6Xw9IkR2Fnn3k+Q==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
|
|
31
package.json
31
package.json
|
@ -1,34 +1,37 @@
|
|||
{
|
||||
"name": "@cellule-financiere-pmo/visua",
|
||||
"version": "1.1.1",
|
||||
"description": "This project defines the visual foundations of the design system and establishes a strategy for structuring styles to guarantee their reusability in the design of graphic interfaces.",
|
||||
"version": "1.1.4",
|
||||
"description": "Defines the visual foundations of the design system and establishes a strategy for structuring styles to guarantee their reusability in graphic interfaces.",
|
||||
"main": "output/variables.css",
|
||||
"files": [
|
||||
"output/*"
|
||||
],
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://gitlab.com/cellule-financiere-pmo/design-system/visua.git"
|
||||
"url": "git+https://dgfipntic.imfr.cgi.com/Cellule-financiere-transverse-PMO/visua.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://dgfipntic.imfr.cgi.com/Cellule-financiere-transverse-PMO/visua/issues"
|
||||
},
|
||||
"homepage": "https://dgfipntic.imfr.cgi.com/Cellule-financiere-transverse-PMO/visua#readme",
|
||||
"keywords": [
|
||||
"scss",
|
||||
"css",
|
||||
"design system"
|
||||
"design system",
|
||||
"design tokens",
|
||||
"DSFR",
|
||||
"typography",
|
||||
"variables"
|
||||
],
|
||||
"author": "CGI",
|
||||
"license": "UNLICENSED",
|
||||
"bugs": {
|
||||
"url": "https://gitlab.com/cellule-financiere-pmo/design-system/visua/issues"
|
||||
},
|
||||
"homepage": "https://gitlab.com/cellule-financiere-pmo/design-system/visua#readme",
|
||||
"devDependencies": {
|
||||
"sass": "^1.89.2"
|
||||
},
|
||||
"main": "output/variables.css",
|
||||
"files": [
|
||||
"output/variables.css",
|
||||
"output/typography.module.css"
|
||||
],
|
||||
"publishConfig": {
|
||||
"registry": "https://gitlab.com/api/v4/projects/71595796/packages/npm/"
|
||||
"registry": "https://dgfipntic.imfr.cgi.com/api/packages/Cellule-financiere-transverse-PMO/npm/"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user