From 6ced0516f61a2aab75ecaef656366c932e8d00e0 Mon Sep 17 00:00:00 2001 From: Eduardo Moreira Date: Sun, 22 Mar 2020 10:05:43 -0300 Subject: [PATCH] Remove bower from project (#762) --- .npmignore | 1 - README.md | 1 - bower.json | 17 ----------------- 3 files changed, 19 deletions(-) delete mode 100644 bower.json diff --git a/.npmignore b/.npmignore index f1dbc7e..11e9570 100644 --- a/.npmignore +++ b/.npmignore @@ -1,6 +1,5 @@ /.*/ /.* -/bower.json /examples /extras/* /circle.yml diff --git a/README.md b/README.md index 8338d8a..efd203a 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,6 @@ REPOSITORY STRUCTURE * [extras/](extras/) contains plugins that for various reasons aren't enabled by default. You have to explicitly add them with their own `script` element to use them. * [build.js](build.js): Simple build file that creates `js/impress.js`. It also creates a minified version `impress.min.js`, but that one is not included in the github repository. * [package.json](build.js): An NPM package specification. This was mainly added so you can easily install [buildify](https://www.npmjs.com/package/buildify) and run `node build.js`. Other than the build process, which is really just doing roughly `cat src/impress.js src/plugins/*/*.js > js/impress.js`, and testing, `impress.js` itself doesn't depend on Node or any NPM modules. -* [bower.json](bower.json): A Bower package file. We also don't depend on Bower, but provide this file if you want to use it. WANT TO CONTRIBUTE? --------------------- diff --git a/bower.json b/bower.json deleted file mode 100644 index 34ae420..0000000 --- a/bower.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "name": "impress-js", - "description": "It's a presentation framework based on the power of CSS3 transforms and transitions in modern browsers and inspired by the idea behind prezi.com", - "homepage": "https://github.com/bartaz/impress.js", - "license" : ["http://bartaz.mit-license.org/", "http://www.gnu.org/licenses/"], - "main": [ - "./js/impress.js" - ], - "keywords": [ - "slideshow", - "css3" - ], - "author": { - "name": "Bartek Szopka", - "web": "http://bartaz.github.com" - } -}