Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TriangleJuice committed Mar 1, 2024
1 parent c2b295b commit 8dd76f4
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 25 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/aws.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node 14.x
uses: actions/setup-node@v1
uses: actions/checkout@v4
- name: Use Node 20.x
uses: actions/setup-node@v4
with:
node-version: '14.x'
node-version: 20
- name: Install dependencies
run: npm ci
- name: Build library
run: npm run aws
- name: Archive build
if: success()
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: dist
path: dist
Expand All @@ -30,9 +30,9 @@ jobs:
needs: build
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4
- name: Download build
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: dist
- name: Uploading to Amazon S3
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Continuous integration
on:
push:
branches:
- '*'
- '!master'
- "*"
- "!master"
pull_request:
branches:
- master
Expand All @@ -13,11 +13,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node 14.x
uses: actions/setup-node@v1
uses: actions/checkout@v4
- name: Use Node 20.x
uses: actions/setup-node@v4
with:
node-version: '14.x'
node-version: 20
- name: Install dependencies
run: npm ci
- name: Build documentation
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,10 @@


## Unreleased

## [1.0.0] - 2024-03-01

- Initial release.


[1.0.0]: https://github.com/a-ui/atlas_branding_scss/tree/v1.0.0
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Antwerp branding variant
# Atlas branding

This project contains everything you need to make a variant of Antwerp's core branding.

Expand Down Expand Up @@ -44,14 +44,14 @@ Contact us via [[email protected]](mailto:[email protected]).

## Versioning

We use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/a-ui/core_branding_scss/tags).
We use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/a-ui/atlas_branding_scss/tags).

## Authors

* **Jeroen Collier** - *Art director, lead design*
* **Jasper Van Proeyen** - *Initial work, lead developer*

See also the list of [contributors](https://github.com/a-ui/core_branding_scss/contributors) who participated in this project.
See also the list of [contributors](https://github.com/a-ui/atlas_branding_scss/contributors) who participated in this project.

## License

Expand Down
4 changes: 2 additions & 2 deletions gulp/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ gulp.task('cdn', function (callback) {
if (err) {
throw err;
} else {
console.log('\n----++++ https://cdn.antwerpen.be/core_branding_scss/' + version + '/main.min.css ++++----\n');
console.log('\n----++++ https://cdn.antwerpen.be/atlas_branding_scss/' + version + '/main.min.css ++++----\n');
callback();
}
});
Expand All @@ -43,6 +43,6 @@ gulp.task('readme', function() {
var version = nodePackageFile.version;

return gulp.src(['README.md'])
.pipe(replace(/core_branding_scss\/[0-9]\.[0-9]\.[0-9]\/main.min.css/g, 'core_branding_scss/' + version + '/main.min.css'))
.pipe(replace(/atlas_branding_scss\/[0-9]\.[0-9]\.[0-9]\/main.min.css/g, 'atlas_branding_scss/' + version + '/main.min.css'))
.pipe(gulp.dest('./'));
});
4 changes: 2 additions & 2 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@a-ui/variant",
"name": "@a-ui/atlas",
"version": "1.0.0",
"description": "core_branding_scss",
"description": "atlas_branding_scss",
"repository": {
"type": "git",
"url": "https://github.com/a-ui/variant_branding_scss.git"
"url": "https://github.com/a-ui/atlas_branding_scss.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
Expand Down
4 changes: 2 additions & 2 deletions src/index.njk
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
-->

<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" href="https://cdn.antwerpen.be/core_branding_scss/6.4.0/main.min.css">
<link rel="stylesheet" href="https://cdn.antwerpen.be/core_branding_scss/6.6.0/main.min.css">
<link rel="stylesheet" href="styles/styleguide.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/styles/a11y-light.min.css">

Expand All @@ -46,7 +46,7 @@
in search results (this prevents caching of meta-data)
-->

<title>Core Branding Variant</title>
<title>Atlas Branding</title>

<meta name="description" content="Core Branding Antwerpen">
<meta name="robots" content="noodp, noydir">
Expand Down

0 comments on commit 8dd76f4

Please sign in to comment.