Skip to content
This repository has been archived by the owner on May 14, 2019. It is now read-only.

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
hnqso committed Apr 19, 2016
1 parent f86c7e4 commit cd582b2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 11 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
.DS_Store
node_modules
*.log
dist
4 changes: 0 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
# CHANGELOG

### v3.0.1

- Remove dist folder

### v3.0.0

The major change is the API. We took one step back to its core principle of "keep it simple".
Expand Down
2 changes: 2 additions & 0 deletions dist/minigrid.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
{
"name": "minigrid",
"version": "3.0.1",
"version": "3.0.0",
"description": "Minimal 2kb zero dependency cascading grid layout",
"main": "src/index.js",
"files": [
"src/index.js",
"src/minigrid.umd.js"
"src/index.js"
],
"scripts": {
"clean": "rm -rf umd/minigrid.umd.js",
"clean": "rm -rf dist/minigrid.min.js",
"build": "npm run clean && npm run lint && npm run test && npm run uglify",
"lint": "./node_modules/.bin/eslint --config=.eslintrc src",
"test": "browserify tests/index.js | tape-run",
"uglify": "uglifyjs --comments -m -c -o src/minigrid.umd.js src/index.js"
"uglify": "uglifyjs --comments -m -c -o dist/minigrid.min.js src/index.js"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* @license Minigrid v3.0.1 – minimal cascading grid layout http://alves.im/minigrid */
/* @license Minigrid v3.0.0 – minimal cascading grid layout http://alves.im/minigrid */
(function (root, factory) {
if (typeof define === 'function' && define.amd) {
define(factory);
Expand Down

0 comments on commit cd582b2

Please sign in to comment.