Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
gamtiq committed Mar 18, 2020
1 parent 4a1dd31 commit e369f98
Show file tree
Hide file tree
Showing 24 changed files with 4,944 additions and 1,326 deletions.
13 changes: 7 additions & 6 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,14 @@ module.exports = function(grunt) {
}
},

push: {
bump: {
options: {
files: ["package.json", "bower.json", "component.json"],
files: ["package.json", "package-lock.json", "bower.json", "component.json"],
commitMessage: "Release version %VERSION%",
commitFiles: ["-a"],
tagName: "%VERSION%",
tagMessage: "Version %VERSION%"
tagMessage: "Version %VERSION%",
pushTo: "origin"
}
},

Expand All @@ -103,9 +104,9 @@ module.exports = function(grunt) {
grunt.registerTask("default", ["jshint", "test"]);
grunt.registerTask("all", ["default", "build", "doc"]);

grunt.registerTask("release", ["push"]);
grunt.registerTask("release-minor", ["push:minor"]);
grunt.registerTask("release-major", ["push:major"]);
grunt.registerTask("release", ["bump"]);
grunt.registerTask("release-minor", ["bump:minor"]);
grunt.registerTask("release-major", ["bump:major"]);

// For Travis CI service
grunt.registerTask("travis", ["all"]);
Expand Down
2 changes: 1 addition & 1 deletion LICENSE-MIT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2014-2016 Denis Sikuler
Copyright (c) 2014-2020 Denis Sikuler

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
Expand Down
26 changes: 3 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,7 @@ Functions to create, process and test objects.

npm install adam

### [JSPM](http://jspm.io)

jspm install adam

### [Component](https://github.com/component/component)

component install gamtiq/adam

### [Jam](http://jamjs.org)

jam install adam

### [Bower](http://bower.io)
### [Bower](https://bower.io)

bower install adam

Expand All @@ -39,20 +27,12 @@ Use `dist/adam.js` or `dist/adam.min.js` (minified version).

## Usage <a name="usage"></a> [&#x2191;](#start)

### Node, JSPM, Component
### Node

```js
var adam = require("adam");
```

### Jam

```js
require(["adam"], function(adam) {
...
});
```

### AMD

```js
Expand Down Expand Up @@ -260,5 +240,5 @@ Add unit tests for any new or changed functionality.
Lint and test your code using [Grunt](http://gruntjs.com/).

## License
Copyright (c) 2014-2016 Denis Sikuler
Copyright (c) 2014-2020 Denis Sikuler
Licensed under the MIT license.
Loading

0 comments on commit e369f98

Please sign in to comment.