Giter Site home page Giter Site logo

outset's People

Contributors

amrmorsy avatar callmecavs avatar jaxgeller avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

outset's Issues

remove IE meta tag

as of IE11, "edge mode" is no longer considered experimental, and enabled by default via <!DOCTYPE html>, so

<meta http-equiv="X-UA-Compatible" content="IE=edge">

is so longer needed

Building doesnt actually build

Under gulp.task('build', ['html', 'sass', 'js', 'images', 'fonts',...]) every task builds then exits except js. Thus if you ever need to build and exit, you must manually intervene. I believe this is because of watchify. It would be great if we can get back the ability to run gulp build and have it exit once completed.

add "visually hidden" mixin/helper

add a class or Sass mixin to hide something in a manner that is still accessible to screen readers

html5bp uses:

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

disable browsersync "ghost mode"

server options in the gulpfile should look as follows:

// SERVER & RELOAD

const options = {
  ghostMode: false,
  notify: false,
  server: {
    baseDir: './dist'
  }
}

add "2x" mixin

@mixin x2() {
  @media (min-resolution: 2dppx) {
    @content;
  }
}

need to try/catch the JS writing

currently an error in bundle.write breaks the stream

const js = async done => {
  let bundle

  try {
    bundle = await rollup.rollup(read)
    await bundle.write(write)
  } catch (error) {
    onError('JS', error, done)
  }
}

Use cssnano

[email protected]: Use better "gulp-cssnano" instead. https://github.com/ben-eb/gulp-cssnano

Or even better use libsass output: compressed

update viewport meta tag

should look like:

<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">

fixes notch issue on iPhone X and above

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.