Skip to content

Commit

Permalink
fix examples
Browse files Browse the repository at this point in the history
  • Loading branch information
ianstormtaylor committed Mar 28, 2015
1 parent 6efa29c commit b65a717
Show file tree
Hide file tree
Showing 13 changed files with 50 additions and 47 deletions.
47 changes: 24 additions & 23 deletions examples/build-tool/build/index.css
Expand Up @@ -60,29 +60,6 @@ code i {
color: #daae20;
}

/**
* Example.
*/

.Example {
max-width: 17em;
margin-top: 1px;
padding: 1.5em;
background-color: white;
}

.Example-title {
font-size: 1.5em;
margin-bottom: .4em;
text-align: center;
}

.Example-step-list {
list-style: none;
line-height: 2;
margin: 0;
}

/**
* Plugin.
*/
Expand Down Expand Up @@ -143,3 +120,27 @@ code i {
* Variables.
*/



/**
* Example.
*/

.Example {
max-width: 17em;
margin-top: 1px;
padding: 1.5em;
background-color: white;
}

.Example-title {
font-size: 1.5em;
margin-bottom: .4em;
text-align: center;
}

.Example-step-list {
list-style: none;
line-height: 2;
margin: 0;
}
2 changes: 1 addition & 1 deletion examples/build-tool/package.json
Expand Up @@ -3,6 +3,6 @@
"private": true,
"dependencies": {
"myth": "^0.3.0",
"metalsmith": "^0.2.3"
"metalsmith": "^1.0.0"
}
}
2 changes: 1 addition & 1 deletion examples/jekyll/_site/first-post/index.html
Expand Up @@ -8,4 +8,4 @@ <h1>First Post</h1>
<p>An interesting post about how it&#39;s going to be different this time around. I&#39;m going write a lot more nowadays and use this blog to improve my writing.</p>

</body>
</html>
</html>
2 changes: 1 addition & 1 deletion examples/jekyll/_site/fourth-post/index.html
Expand Up @@ -8,4 +8,4 @@ <h1>Fourth Post</h1>
<p>A really short, rushed-feeling string of words.</p>

</body>
</html>
</html>
2 changes: 1 addition & 1 deletion examples/jekyll/_site/second-post/index.html
Expand Up @@ -8,4 +8,4 @@ <h1>Second Post</h1>
<p>A super-interesting piece of prose I had already written weeks ago.</p>

</body>
</html>
</html>
2 changes: 1 addition & 1 deletion examples/jekyll/_site/third-post/index.html
Expand Up @@ -8,4 +8,4 @@ <h1>Third Post</h1>
<p>A slightly late, less interesting piece of prose.</p>

</body>
</html>
</html>
4 changes: 2 additions & 2 deletions examples/jekyll/package.json
Expand Up @@ -3,11 +3,11 @@
"private": true,
"dependencies": {
"metalsmith-drafts": "0.0.1",
"metalsmith-templates": "^0.1.0",
"metalsmith-templates": "^0.6.1",
"metalsmith-markdown": "^0.2.1",
"metalsmith-permalinks": "^0.1.0",
"swig": "^1.3.2",
"metalsmith": "^0.2.3"
"metalsmith": "^1.0.0"
},
"scripts": {
"build": "metalsmith"
Expand Down
8 changes: 4 additions & 4 deletions examples/project-scaffolder/build/package.json
@@ -1,9 +1,9 @@
{
"name": "my-project",
"description": "Whatever my new project does.",
"repository": "git://github.com/segmentio/my-project.git",
"name": "asd",
"description": "asd",
"repository": "git://github.com/asd.git",
"version": "0.0.0",
"license": "MIT",
"license": "asd",
"main": "lib/index.js",
"dependencies": {},
"devDependencies": {
Expand Down
9 changes: 5 additions & 4 deletions examples/project-scaffolder/build/readme.md
@@ -1,11 +1,12 @@
# my-project

Whatever my new project does.
# asd

asd

## Installation

$ npm install my-project
$ npm install asd

## License

MIT
asd
3 changes: 2 additions & 1 deletion examples/project-scaffolder/build/test/index.js
@@ -1,5 +1,6 @@

var assert = require('assert');

describe('my-project', function(){
describe('asd', function(){

});
2 changes: 1 addition & 1 deletion examples/project-scaffolder/package.json
Expand Up @@ -6,6 +6,6 @@
"async": "^0.2.10",
"handlebars": "^2.0.0-alpha.2",
"cli-prompt": "^0.3.2",
"metalsmith": "^0.2.3"
"metalsmith": "^1.0.0"
}
}
4 changes: 2 additions & 2 deletions examples/static-site/package.json
Expand Up @@ -2,10 +2,10 @@
"name": "static-site-example",
"private": true,
"dependencies": {
"metalsmith-templates": "^0.1.0",
"metalsmith-templates": "^0.6.1",
"metalsmith-markdown": "^0.2.1",
"metalsmith-permalinks": "^0.1.1",
"metalsmith": "^0.2.3",
"metalsmith": "^1.0.0",
"handlebars": "^2.0.0-alpha.2"
}
}
10 changes: 5 additions & 5 deletions examples/wintersmith/package.json
Expand Up @@ -2,10 +2,10 @@
"name": "wintersmith-example",
"private": true,
"dependencies": {
"jade": "*",
"metalsmith": "*",
"metalsmith-markdown": "*",
"metalsmith-permalinks": "*",
"metalsmith-templates": "*"
"jade": "^1.3.0",
"metalsmith": "^1.0.0",
"metalsmith-markdown": "^0.2.1",
"metalsmith-permalinks": "^0.1.0",
"metalsmith-templates": "^0.6.1"
}
}

0 comments on commit b65a717

Please sign in to comment.