Skip to content

Commit

Permalink
Update scriptkit (#46)
Browse files Browse the repository at this point in the history
* Update scriptkit and other dependencies

* Update gitignore

* Update readme links
  • Loading branch information
AlejandroPerezMartin authored Feb 21, 2019
1 parent b3be76c commit 2f212f8
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 11 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ node_modules
npm-debug.log
.idea
test/domassist.test.dist.js
test/domassist.test.dist.esm.js
dist
package-lock.json
*map
Expand Down
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ node_modules
npm-debug.log
.idea
test/domassist.test.dist.js
test/domassist.test.dist.esm.js
*map
.DS_Store
.git
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2016 First+Third
Copyright (c) 2019 First+Third

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,21 +28,21 @@ domassist.addClass(els, 'my-new-class');
- [findOne](#findoneselector-context)
- [addClass](#addclassselector-classes)
- [removeClass](#removeclassselector-classes)
- [toggleClass](#toggleclassselector-classes)
- [toggleClass](#toggleclassselector-class)
- [hasClass](#hasclassselector-class)
- [html](#htmlselector-value)
- [closest](#closestelement-selector)
- [delegate](#delegateelement-event-selector-callback-capture)
- [hide](#hideelement)
- [hide](#hideselector)
- [hover](#hoverelement-enter-exit)
- [matches](#matches)
- [modify](#modifyselector-params)
- [on](#onselector-event-callback-capture)
- [off](#offselector-event)
- [once](#onceselector-event-callback-capture)
- [once](#onceelement-event-callback-capture)
- [ready](#readycallback)
- [show](#showelement)
- [styles](#styleselements-styles)
- [show](#showselector)
- [styles](#stylesselector-styles)
- [addAttrs](#addattrsselector-attributes)
- [remove](#removeselector-context)

Expand Down Expand Up @@ -437,7 +437,7 @@ domassist.remove('[type="text"]', document.forms[0]); // remove all text fields

### MIT License

Copyright (c) 2016 First+Third
Copyright (c) 2019 First+Third

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "2.0.0-rc.1",
"description": "Various dom helpers",
"main": "domassist.js",
"module": "dist/domassist.js",
"module": "dist/domassist.esm.js",
"scripts": {
"start": "scriptkit",
"dev": "scriptkit dev",
Expand All @@ -28,10 +28,10 @@
"homepage": "https://github.com/firstandthird/domassist#readme",
"devDependencies": {
"eslint-config-firstandthird": "^4.3.0",
"eslint-plugin-compat": "^2.6.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-compat": "^2.7.0",
"eslint-plugin-import": "^2.16.0",
"phantomjs-prebuilt": "^2.1.16",
"scriptkit": "^1.0.0",
"scriptkit": "^2.0.0",
"static-server": "^2.2.1",
"tap-spec": "^5.0.0",
"tape-rollup": "^4.6.4",
Expand Down

0 comments on commit 2f212f8

Please sign in to comment.