Skip to content
This repository was archived by the owner on Feb 2, 2021. It is now read-only.

Commit fea8217

Browse files
committed
v2.0.0
1 parent 29e8628 commit fea8217

26 files changed

+2754
-1528
lines changed

.babelrc

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"exclude": "node_modules/**",
3+
"presets": [
4+
["@babel/preset-env", {
5+
"modules": false,
6+
"targets": { "node": 6 }
7+
}],
8+
["@babel/preset-stage-0", {
9+
"decoratorsLegacy": true,
10+
"pipelineProposal": "minimal"
11+
}]
12+
],
13+
"plugins": [
14+
"@babel/plugin-transform-runtime"
15+
]
16+
}

.eslintrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": "trigen/base",
3+
"env": {
4+
"node": true
5+
}
6+
}

.eslintrc.js

Lines changed: 0 additions & 6 deletions
This file was deleted.

.gitignore

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,13 @@ node_modules
3333
# Optional REPL history
3434
.node_repl_history
3535

36-
# OS X stuff
36+
# OS stuff
37+
._*
3738
.DS_Store
3839

3940
# Some caches
40-
.eslintcache
41+
.*cache
4142

4243
# Compiled dist
4344
lib
45+
package

.huskyrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"hooks": {
3+
"pre-push": "npm test"
4+
}
5+
}

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [2.0.0] - 2018-07-07
9+
### Added
10+
- pre-push hook with husky.
11+
- `npm-check`
12+
13+
### Changed
14+
- Dependencies are updated.
15+
- Code-style fixes.
16+
- `package.babel` -> `.babelrc`.
17+
- `.eslintrc.js` -> `.eslintrc`.
18+
- 'src/generator.js' -> `@flexis/srcset`.
19+
820
## [1.2.1] - 2018-03-31
921
### Changed
1022
- Some `devDependencies` are updated.

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
MIT License
1+
The MIT License (MIT)
22

3-
Copyright (c) 2017
3+
Copyright (c) 2016 - present, TrigenSoftware
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

example/dist/office.webp

-586 Bytes
Loading

example/dist/office@1280w.jpg

198 KB
Loading

example/dist/office@1280w.webp

-3.91 KB
Loading

0 commit comments

Comments
 (0)