Skip to content

Commit

Permalink
chore: v1.0.0 (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleyboar authored Dec 6, 2022
1 parent 6885640 commit 3a929f4
Show file tree
Hide file tree
Showing 118 changed files with 161 additions and 123 deletions.
33 changes: 32 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,36 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased][unreleased]

## [1.0.0] - 2022-12-05: Polish, Table Objects, Form Patterns, Dist Files, Fonts

### Added

* **feat!: ease use of core-styles (#81)**
* feat!: provide CDN-style deliverable stylesheets (#78)
* feat(components): form patterns (c-form, django.cms.forms) (#77, #79, #80)
* feat(components): c-form updates & base html-elements (#79)
* feat(dist): commit dist for clients relying on it (#70)
* fix(o-table-wrap): …scroll.extra → …scroll-extra (#69)
* feat(objects): o-table, o-fixed-header-table, o-flex-item-table-wrap (#68)

### Changed

* **feat(settings): lighter `…primary--light` color (#76)**

### Removed

* **feat!: provide CDN-style deliverable stylesheets (#78)**
* removed settings load from ALL _import source files (#78)
* removed icon(.…).css
* removed font settings from header

### Fixed

* fix(table): border colors (#75)
* fix(fonts)!: support font load on demo (#74)
* **fix(demo)!: font path change in dist (#73)**
* fix(fonts): fp-1891 add regular italic, also add black (#71, #72)

## [0.11.0] - 2022-11-14: Table Pattern, Many Demo Fixes, Demo Build Dir Clarity

### Added
Expand Down Expand Up @@ -324,7 +354,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

Initial working code. (This code may not work on all environments.)

[unreleased]: https://github.com/TACC/Core-Styles/compare/v0.11.0...HEAD
[unreleased]: https://github.com/TACC/Core-Styles/compare/v1.0.0...HEAD
[1.0.0]: https://github.com/TACC/Core-Styles/releases/tag/v1.0.0
[0.11.0]: https://github.com/TACC/Core-Styles/releases/tag/v0.11.0
[0.10.0]: https://github.com/TACC/Core-Styles/releases/tag/v0.10.0
[0.9.0]: https://github.com/TACC/Core-Styles/releases/tag/v0.9.0
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ Only authorized team members may publish.
1. Create new branch for version bump.
1. Update `CHANGELOG.md`.
1. Update version via `npm version N.N.N`.
1. Update dist via `npm run build:css --build-id=vN.N.N`.
1. Commit, push, PR, review, merge.
1. Create release and tag on GitHub.
1. Publish to NPM via `npm publish --access public`.
Expand Down
5 changes: 5 additions & 0 deletions bin/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@
/** Build CSS using the Core-Styles API */

const { buildStylesheets } = require('../src/main');
const mininmist = require('minimist');

const ARGS = mininmist( process.argv.slice( 2 ) );
const BUILD_ID = ARGS['build-id'] || '';

buildStylesheets('src/lib/_imports/**/*!(fractal.server.refresh).css', './dist', {
baseMirrorDir: 'src/lib/_imports',
buildId: BUILD_ID
});
2 changes: 1 addition & 1 deletion dist/branding_logos.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/components/README.css
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/*! @tacc/core-styles v0.11.0-30-g66400cb+ | MIT | github.com/TACC/Core-Styles */
/*! @tacc/core-styles v1.0.0 | MIT | github.com/TACC/Core-Styles */
2 changes: 1 addition & 1 deletion dist/components/bootstrap.container.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/components/bootstrap.css
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/*! @tacc/core-styles v0.11.0-30-g66400cb+ | MIT | github.com/TACC/Core-Styles */
/*! @tacc/core-styles v1.0.0 | MIT | github.com/TACC/Core-Styles */
2 changes: 1 addition & 1 deletion dist/components/bootstrap.figure.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/components/bootstrap.form.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/components/bootstrap.modal.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/components/bootstrap.pagination.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/components/bootstrap/bootstrap--form.demo.css
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/*! @tacc/core-styles v0.11.0-30-g66400cb+ | MIT | github.com/TACC/Core-Styles */form{margin:1em}
/*! @tacc/core-styles v1.0.0 | MIT | github.com/TACC/Core-Styles */form{margin:1em}
2 changes: 1 addition & 1 deletion dist/components/bootstrap/bootstrap--modal.demo.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/components/bootstrap/demo.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 3a929f4

Please sign in to comment.