Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
692895c
bump underscore dependencies
aminya Jul 4, 2020
c82cdff
using babel
aminya Jul 4, 2020
30e616e
replace grunt with scripts
aminya Jul 4, 2020
8929903
spec: require from lib
aminya Jul 4, 2020
fcf6367
decaffeinate
aminya Jul 4, 2020
1ddf28c
rename to mjs to support modules directly
aminya Jul 4, 2020
8a461b8
named import from underscore
aminya Jul 4, 2020
f16853e
named export all the functions
aminya Jul 4, 2020
bf2f536
named import needed functions from "underscore"
aminya Jul 4, 2020
dce9ab5
isEqual move default values to function head
aminya Jul 4, 2020
1c031ea
use different names for isEqual functions
aminya Jul 4, 2020
2eb691e
make splitKeyPath directly a function
aminya Jul 4, 2020
b849fdf
deepExtend keys is array
aminya Jul 4, 2020
0942b4f
deepContains unnecessary Array.from
aminya Jul 4, 2020
924a590
humanizeEventName unnecessary Array.from
aminya Jul 4, 2020
c8d700a
humanizeKeystroke unnecessary Array.from
aminya Jul 4, 2020
1adcb13
mapObject keys is an array + unncessary Array.from
aminya Jul 4, 2020
b254c56
setValueForKeyPath excess return
aminya Jul 4, 2020
47df0ed
hasKeyPath unncessary Array.from
aminya Jul 4, 2020
39ad1b3
spliceWithArray unncessary Array.from
aminya Jul 4, 2020
bd7352f
spliceWithArray excess return
aminya Jul 4, 2020
43ff2ab
spliceWithArray loop simplification
aminya Jul 4, 2020
ee51163
sum unncessary Array.from
aminya Jul 4, 2020
d318b31
uncamelcase use =>
aminya Jul 4, 2020
39c6fdb
underscore use =>
aminya Jul 4, 2020
3b0388f
valueForKeyPath unncessary Array.from
aminya Jul 4, 2020
8b5cf09
humanizeKey default values in function head
aminya Jul 4, 2020
8577c7b
humanizeKeystroke default value in function head
aminya Jul 4, 2020
0eb5a4b
pluralize default value in function head
aminya Jul 4, 2020
e6b6267
spliceWithArray default value in function head
aminya Jul 4, 2020
2ec24fb
remove addressed suggestions
aminya Jul 4, 2020
dff4b83
more node versions in travis and appveyor
aminya Jul 4, 2020
ba3ba50
using cross-env
aminya Jul 11, 2020
9e00efd
update babel and bower command
aminya Jul 17, 2020
e6e3da1
update bower
aminya Jul 17, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@ notifications:
on_failure: change

node_js:
- 8
- 14
- 12
- 10
46 changes: 0 additions & 46 deletions Gruntfile.coffee

This file was deleted.

7 changes: 5 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
image: Visual Studio 2015
image: Visual Studio 2017

environment:
nodejs_version: "6"
nodejs_version:
- 10
- 12
- 14

platform:
- x86
Expand Down
20 changes: 20 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
let presets = [];

let plugins = [
["@babel/plugin-proposal-optional-chaining", { loose: false }],
["@babel/plugin-proposal-nullish-coalescing-operator", { loose: false }],
];

if (process.env.BABEL_ENV === "development") {
plugins.push(...[
"@babel/plugin-transform-modules-commonjs",
"@babel/plugin-proposal-export-namespace-from",
]);
}

module.exports = {
presets: presets,
plugins: plugins,
exclude: "node_modules/**",
sourceMap: true,
};
Loading