Skip to content

Commit bcbcfad

Browse files
committed
trying to commit from codesandbox
1 parent a56f903 commit bcbcfad

File tree

4 files changed

+48
-11
lines changed

4 files changed

+48
-11
lines changed

.codesandbox/workspace.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"preview": [
3+
{
4+
"views": [
5+
{
6+
"id": "codesandbox.browser"
7+
},
8+
{
9+
"id": "codesandbox.browser",
10+
"options": {
11+
"port": 3001,
12+
"url": "https://j9foq-3001.sse.codesandbox.io"
13+
},
14+
"closeable": true
15+
}
16+
]
17+
},
18+
{
19+
"open": true,
20+
"views": [
21+
{
22+
"id": "codesandbox.terminal"
23+
},
24+
{
25+
"id": "codesandbox.console"
26+
},
27+
{
28+
"id": "codesandbox.problems"
29+
}
30+
]
31+
}
32+
]
33+
}

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "designsystems.dev",
2+
"name": "designsystemsdev",
33
"private": false,
4-
"description": "A technology-agnostic knowledge base and practical guide for developing design systems at scale.",
4+
"description": "",
55
"version": "0.1.0",
66
"license": "MIT",
77
"scripts": {
@@ -36,5 +36,6 @@
3636
},
3737
"dependencies": {
3838
"postcss-nested": "^4.2.1"
39-
}
40-
}
39+
},
40+
"keywords": []
41+
}

sandbox.config.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
{
2-
"template": "node"
3-
}
2+
"template": "node",
3+
"container": {
4+
"port": 8080
5+
}
6+
}

src/index.11ty.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
exports.data = {
2-
permalink: "index.html"
3-
}
2+
permalink: 'index.html',
3+
};
44

5-
exports.render = function(data) {
6-
return `${this.docs(data.collections.docs)}`
7-
}
5+
exports.render = function(data) {
6+
return `${this.docs(data.collections.docs)}`;
7+
};

0 commit comments

Comments
 (0)