Skip to content

Commit

Permalink
Merge pull request #5 from pocketsize/dev
Browse files Browse the repository at this point in the history
Version 1.0.1
  • Loading branch information
björn committed Apr 29, 2019
2 parents b1b6c4e + 757195d commit e14e812
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 16 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Bolts
*v1.0.0*
*v1.0.1*

Bolts is a collection of practical Sass mixins and JS functions helping you deal with all the mundane website building and styling tasks, so that you can focus on creating something new. It aims to be a toolkit that does the things you're tired of.

Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "bolts-lib",
"version": "1.0.0",
"description": "Front-end helper toolkit",
"version": "1.0.1",
"description": "Front-end helper library",
"main": "src/js/index.js",
"author": "Pocketsize <[email protected]> (https://www.pocketsize.se)",
"homepage": "https://www.pocketsize.se",
Expand All @@ -15,6 +15,7 @@
"es6",
"front-end",
"helper",
"library",
"toolkit"
],
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/js/bolts.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Bolts 1.0.0 | MIT License
* Bolts 1.0.1 | MIT License
*
* Developed by Pocketsize
* http://www.pocketsize.se/
Expand Down
2 changes: 1 addition & 1 deletion src/js/detect.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Bolts 1.0.0 | MIT License
* Bolts 1.0.1 | MIT License
*
* Developed by Pocketsize
* http://www.pocketsize.se/
Expand Down
7 changes: 5 additions & 2 deletions src/js/index.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
/**
* Bolts 1.0.0 | MIT License
* Bolts 1.0.1 | MIT License
*
* Developed by Pocketsize
* http://www.pocketsize.se/
*/

import bolts from './bolts'
export { default as state } from './state'
export { default as detect } from './detect'
export { default as timing } from './timing'
export { default as misc } from './misc'
export { default as bolts } from './bolts'

export { bolts as bolts }
export default bolts
2 changes: 1 addition & 1 deletion src/js/misc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Bolts 1.0.0 | MIT License
* Bolts 1.0.1 | MIT License
*
* Developed by Pocketsize
* http://www.pocketsize.se/
Expand Down
7 changes: 1 addition & 6 deletions src/js/state.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Bolts 1.0.0 | MIT License
* Bolts 1.0.1 | MIT License
*
* Developed by Pocketsize
* http://www.pocketsize.se/
Expand All @@ -9,18 +9,13 @@ const state = {
get,
set,
remove,
toggle,
on,
trigger,
getDOMState,
setDOMState,

_store: {
global: [],
local: [],
},

_listeners: [],
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/js/timing.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Bolts 1.0.0 | MIT License
* Bolts 1.0.1 | MIT License
*
* Developed by Pocketsize
* http://www.pocketsize.se/
Expand Down
2 changes: 1 addition & 1 deletion src/sass/bolts.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Bolts 1.0.0 | MIT License
* Bolts 1.0.1 | MIT License
*
* Developed by Pocketsize
* http://www.pocketsize.se/
Expand Down

0 comments on commit e14e812

Please sign in to comment.