Skip to content

Commit 53f73c5

Browse files
committed
updates
1 parent f92f5fe commit 53f73c5

36 files changed

+10377
-811
lines changed

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

.eleventy.js

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,6 @@ module.exports = function (eleventyConfig) {
4141
eleventyConfig.addPassthroughCopy({ 'src/images': 'images' });
4242
eleventyConfig.setBrowserSyncConfig({ files: [manifestPath] });
4343

44-
eleventyConfig.addShortcode('audscss', function () {
45-
return manifest['main.css']
46-
? `<link href="${manifest['pancake.min.css']}" rel="stylesheet" />`
47-
: '';
48-
});
49-
5044
eleventyConfig.addShortcode('bundledcss', function () {
5145
return manifest['main.css']
5246
? `<link href="${manifest['main.css']}" rel="stylesheet" />`
@@ -59,9 +53,9 @@ module.exports = function (eleventyConfig) {
5953
: '';
6054
});
6155

62-
eleventyConfig.addShortcode('audsjs', function () {
56+
eleventyConfig.addShortcode('designsystemjs', function () {
6357
return manifest['main.js']
64-
? `<script src="${manifest['pancake.min.js']}"></script>`
58+
? `<script src="${manifest['designsystem.min.js']}"></script>`
6559
: '';
6660
});
6761

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
12.13.1

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Design System AU
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1-
# Design System AU blog and site
1+
# Design System AU Blog
22

3-
A blog and website providing a place to talk about Design System AU.
3+
A website providing a place to talk about Design System AU.
4+
5+
## Getting started
6+
7+
Install the correct node version using nvm:
8+
9+
nvm use
10+
11+
Install packages:
12+
13+
npm i
14+
15+
### Option 1: Build and start a dev mode
16+
17+
Build (once):
18+
19+
npm run build
20+
21+
Run:
22+
23+
npm run dev

0 commit comments

Comments
 (0)