Skip to content

Commit

Permalink
removed modernizr as it should now be downloaded in the form of a cus…
Browse files Browse the repository at this point in the history
…tom build based on the project's needs
  • Loading branch information
dougmacklin committed Feb 8, 2016
1 parent 7d23b41 commit bfe191f
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 14 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ This generator will scaffold out a project folder to get you up and running with

#### Yeoman Project Generator

The [Yeoman](http://yeoman.io/) scaffolding tool allows us to do the actual generation of the starter project, including all of the various subdirectories, dependencies, and files it contains. Prior to scaffolding out the project, it allows us to ask the user for input and use their answers to determine what to include in the project folder.
The [Yeoman](http://yeoman.io/) scaffolding tool allows us to do the actual creation of the starter project, including its various folders, dependencies, and files.

After running `yo foundation-browserify`, you will be asked a series of project configuration questions about the following libraries that will ultimately determine what goes into your starter project folder.
After running `yo foundation-browserify`, you will be asked a series of project configuration questions that will ultimately determine what goes into your starter project folder.

#### Foundation Framework

The [Foundation](http://foundation.zurb.com/) framework is the most advanced responsive front-end framework in the world. This generator provides the option to scaffold out either a Foundation 6 or Foundation 5 project.
The [Foundation](http://foundation.zurb.com/) framework from [Zurb](https://github.com/zurb) is the most advanced responsive front-end framework in the world. This generator provides the option to scaffold out either a Foundation 6 or Foundation 5 project.

#### Browserify

Expand Down Expand Up @@ -128,7 +128,7 @@ This generator uses [LibSass](http://sass-lang.com/libsass). Foundation 5 projec

#### Bourbon Sass Mixin Library

The [Bourbon](http://bourbon.io/) library includes a number of useful Sass mixins, saving you from reinventing the wheel.
The [Bourbon](http://bourbon.io/) library includes a number of useful Sass mixins, saving you from having to reinvent the wheel.

#### Motion UI Sass Library

Expand Down
7 changes: 3 additions & 4 deletions app/templates/_index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Foundation</title><% if (props.fontAwesome) { %>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<title><%= props.appName %></title>
<% if (props.fontAwesome) { %><link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<% } %><link rel="stylesheet" href="./stylesheets/app.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js"></script>
</head>

<body>
Expand All @@ -17,7 +16,7 @@ <h1>Foundation + Browserify Project Generator</h1>

<p>Improve your workflow by harnessing the power of <a href="http://browserify.org/" target="_blank">Browserify</a> with your <a href="http://foundation.zurb.com/" target="_blank">Foundation</a> projects!</p>

<p>If you're not sure why you should be using this generator, or aren't familiar with some of the tools it offers, check out the <a href="https://github.com/dougmacklin/generator-foundation-browserify#overview" target="_blank">Generator Overview</a> in the readme.</p>
<p>If you're not sure why you should be using this generator, or aren't familiar with some of the tools it offers, check out the <a href="https://github.com/dougmacklin/generator-foundation-browserify#overview" target="_blank">Generator Overview</a>.</p>
</div>
</div>
<script src="js/bundle.js"></script>
Expand Down
9 changes: 4 additions & 5 deletions app/templates/_index.jade
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@ html
head
meta(charset='utf-8')
meta(name='viewport', content='width=device-width, initial-scale=1.0')
title Foundation
<% if (props.fontAwesome) { %>link(rel='stylesheet', href='https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css')<% } %>
link(rel='stylesheet', href='./stylesheets/app.css')
script(src='https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js')
title <%= props.appName %>
<% if (props.fontAwesome) { %>link(rel='stylesheet', href='https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css')
<% } %>link(rel='stylesheet', href='./stylesheets/app.css')

body
.row
Expand All @@ -21,6 +20,6 @@ html
p
| If you're not sure why you should be using this generator, or aren't familiar with some of the tools it offers, check out the
a(href='https://github.com/dougmacklin/generator-foundation-browserify#overview', target='_blank') Generator Overview
| in the readme.
| .

script(src='js/bundle.js')
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "generator-foundation-browserify",
"version": "0.3.3",
"version": "0.3.4",
"description": "Foundation, Browserify, Gulp, Sass, Babel for ECMAScript 6, Autoprefixer, BrowserSync Live Reloading",
"license": "MIT",
"main": "app/index.js",
Expand Down

0 comments on commit bfe191f

Please sign in to comment.