Skip to content

Commit

Permalink
Merge pull request #13 from AegisJSProject/release/0.1.1
Browse files Browse the repository at this point in the history
Update `@aegisjsproject/core`
  • Loading branch information
shgysk8zer0 authored Mar 3, 2024
2 parents 64c7949 + b7fa122 commit 9d852a5
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 15 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v0.1.1] - 2024-03-02

### Changed
- Update to `@aegisjsproject/core@0.1.2`

### Fixed
- Fix building and exporting CommonJS

## [v0.1.0] - 2023-02-27

### Changed
Expand Down
2 changes: 1 addition & 1 deletion button.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { css } from '@aegisjsproject/core/core.js';
import { css } from '@aegisjsproject/core/parsers/css.js';
import { primary, blue, light } from './palette/bootstrap.js';

export const btn = css`.btn:not([hidden]) {
Expand Down
18 changes: 9 additions & 9 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aegisjsproject/styles",
"version": "0.1.0",
"version": "0.1.1",
"description": "Pre-made and reusable styles for `@aegisjsproject/core`",
"keywords": [
"aegis",
Expand Down Expand Up @@ -91,6 +91,6 @@
"rollup": "^4.9.6"
},
"dependencies": {
"@aegisjsproject/core": "^0.1.0"
"@aegisjsproject/core": "^0.1.2"
}
}
2 changes: 1 addition & 1 deletion reset.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { css } from '@aegisjsproject/core/core.js';
import { css } from '@aegisjsproject/core/parsers/css.js';

export const reset = css`body {
margin: 0;
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import nodeResolve from '@rollup/plugin-node-resolve';
export default {
input: 'styles.js',
output: {
file: 'style.cjs',
file: 'styles.cjs',
format: 'cjs',
},
plugins: [nodeResolve()],
Expand Down
2 changes: 1 addition & 1 deletion theme.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { light, dark } from './palette/bootstrap.js';
import { css, darkCSS, lightCSS } from '@aegisjsproject/core/core.js';
import { css, darkCSS, lightCSS } from '@aegisjsproject/core/parsers/css.js';

export const baseTheme = css`:root {
color-scheme: light dark;
Expand Down

0 comments on commit 9d852a5

Please sign in to comment.