diff --git a/CNAME b/CNAME index 3165ea0..8b13789 100644 --- a/CNAME +++ b/CNAME @@ -1 +1 @@ -es6-features.org + diff --git a/Gruntfile.js b/Gruntfile.js index b502ca8..cf86435 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -1,6 +1,6 @@ /* ** es6-features -- ECMAScript 6 Feature Overview & Comparison -** Copyright (c) 2015-2016 Ralf S. Engelschall +** Copyright (c) 2015-2017 Ralf S. Engelschall ** ** Permission is hereby granted, free of charge, to any person obtaining ** a copy of this software and associated documentation files (the @@ -26,48 +26,38 @@ module.exports = function (grunt) { grunt.loadNpmTasks("grunt-contrib-clean"); grunt.loadNpmTasks("grunt-contrib-copy"); - grunt.loadNpmTasks("grunt-bower-install-simple"); grunt.initConfig({ pkg: grunt.file.readJSON("package.json"), - "bower-install-simple": { - "main": { - options: { - color: true, - production: true, - directory: "bower_components" - } - } - }, copy: { "normalize": { - src: [ "bower_components/normalize.css/normalize.css" ], + src: [ "node_modules/normalize.css/normalize.css" ], dest: "lib/normalize/normalize.css" }, "director": { - src: [ "bower_components/director/build/director.min.js" ], + src: [ "node_modules/director/build/director.min.js" ], dest: "lib/director/director.js" }, "jquery": { - src: [ "bower_components/jquery/dist/jquery.min.js" ], + src: [ "node_modules/jquery/dist/jquery.min.js" ], dest: "lib/jquery/jquery.js" }, "mousetrap": { - src: [ "bower_components/mousetrap/mousetrap.min.js" ], + src: [ "node_modules/mousetrap/mousetrap.min.js" ], dest: "lib/mousetrap/mousetrap.js" }, "typopro": { files: [ - { expand: true, flatten: false, cwd: "bower_components/typopro-web/web", + { expand: true, flatten: false, cwd: "node_modules/typopro-web/web", src: "TypoPRO-OpenSans/**", dest: "lib/typopro/" }, - { expand: true, flatten: false, cwd: "bower_components/typopro-web/web", + { expand: true, flatten: false, cwd: "node_modules/typopro-web/web", src: "TypoPRO-DejaVu/**", dest: "lib/typopro/" }, - { expand: true, flatten: false, cwd: "bower_components/typopro-web/web", + { expand: true, flatten: false, cwd: "node_modules/typopro-web/web", src: "TypoPRO-Journal/**", dest: "lib/typopro/" } ] }, "font-awesome-css": { - src: [ "bower_components/fontawesome/css/font-awesome.css" ], + src: [ "node_modules/font-awesome/css/font-awesome.css" ], dest: "lib/fontawesome/fontawesome.css", options: { process: function (content, srcpath) { @@ -77,7 +67,7 @@ module.exports = function (grunt) { }, "font-awesome-fonts": { files: [{ - expand: true, flatten: false, cwd: "bower_components/fontawesome/fonts", + expand: true, flatten: false, cwd: "node_modules/font-awesome/fonts", src: "fontawesome-webfont.*", dest: "lib/fontawesome/", rename: function (src, dest) { return src + dest.replace(/fontawesome-webfont/, "fontawesome"); @@ -91,6 +81,6 @@ module.exports = function (grunt) { } }); - grunt.registerTask("default", [ "bower-install-simple", "copy" ]); + grunt.registerTask("default", [ "copy" ]); }; diff --git a/LICENSE.txt b/LICENSE.txt index 535bb38..6570cb3 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ es6-features -- ECMAScript 6 Feature Overview & Comparison -Copyright (c) 2015-2016 Ralf S. Engelschall +Copyright (c) 2015-2017 Ralf S. Engelschall Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/Makefile b/Makefile index b180420..9120d82 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ ## ## es6-features -- ECMAScript 6 Feature Overview & Comparison -## Copyright (c) 2015-2016 Ralf S. Engelschall +## Copyright (c) 2015-2017 Ralf S. Engelschall ## ## Permission is hereby granted, free of charge, to any person obtaining ## a copy of this software and associated documentation files (the diff --git a/README.md b/README.md index 202dc43..9fe8cc3 100644 --- a/README.md +++ b/README.md @@ -3,11 +3,11 @@ ### ECMAScript 6: Feature Overview & Comparison -Copyright (c) 2015-2016 Ralf S. Engelschall <[rse@engelschall.com](mailto:rse@engelschall.com)> <[@engelschall](http://twitter.com/engelschall)>
+Copyright (c) 2015-2017 Ralf S. Engelschall <[rse@engelschall.com](mailto:rse@engelschall.com)> <[@engelschall](http://twitter.com/engelschall)>
Partially based on [code snippets](http://git.io/es6features) by Luke Hoban.
Licensed under MIT license. -This is the source of the website [es6-features.org](http://es6-features.org/), +This is the source of the website [rse.github.io/es6-features/](https://rse.github.io/es6-features/), a small overview of current [ECMAScript 6](http://www.ecma-international.org/publications/standards/Ecma-262.htm) language features and a comparison to their old @@ -66,8 +66,8 @@ ECMAScript 5 equivalents. shown style on the website. If you even need to enforce a particular style for both ES6 and ES5 code snippets in your bookmarks, just use one of the following URLs: - [ES6-Features (reduced style)](http://es6-features.org/#reduced) or - [ES6-Features (traditional style)](http://es6-features.org/#traditional) + [ES6-Features (reduced style)]( https://rse.github.io/es6-features/#reduced) or + [ES6-Features (traditional style)]( https://rse.github.io/es6-features/#traditional) - *I still don't understand: why should I use ECMAScript 6? ECMAScript 5 looks sufficient.* @@ -85,7 +85,7 @@ ECMAScript 5 equivalents. - *I've found a mistake, how can I contribute?* - The source is the file `features.txt`, everything else on [es6-features.org](http://es6-features.org) is + The source is the file `features.txt`, everything else on [rse.github.io/es6-features/](https://rse.github.io/es6-features/) is just generated out of it. Fork this project on Github, edit the file `features.txt` and then please send a pull request. diff --git a/convert.js b/convert.js index b6e5a83..3c25618 100644 --- a/convert.js +++ b/convert.js @@ -1,6 +1,6 @@ /* ** es6-features -- ECMAScript 6 Feature Overview & Comparison -** Copyright (c) 2015-2016 Ralf S. Engelschall +** Copyright (c) 2015-2017 Ralf S. Engelschall ** ** Permission is hereby granted, free of charge, to any person obtaining ** a copy of this software and associated documentation files (the diff --git a/convert.sh b/convert.sh index 6f1af4e..91db9d7 100644 --- a/convert.sh +++ b/convert.sh @@ -1,7 +1,7 @@ #!/bin/sh ## ## es6-features -- ECMAScript 6 Feature Overview & Comparison -## Copyright (c) 2015-2016 Ralf S. Engelschall +## Copyright (c) 2015-2017 Ralf S. Engelschall ## ## Permission is hereby granted, free of charge, to any person obtaining ## a copy of this software and associated documentation files (the diff --git a/features.html b/features.html index 1507f47..e03c7cb 100644 --- a/features.html +++ b/features.html @@ -4,7 +4,7 @@