Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
  • Loading branch information
lrsjng committed Jul 27, 2020
1 parent 270f33a commit dbf8e50
Show file tree
Hide file tree
Showing 10 changed files with 2,099 additions and 2,813 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ insert_final_newline = true
trim_trailing_whitespace = true


[{package.json,.eslintrc,.babelrc,.travis.yml}]
[{*.json,*.yml}]
indent_size = 2


Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jQuery plugin to determine the visible fractions of HTML elements.
## License
The MIT License (MIT)

Copyright (c) 2019 Lars Jung (https://larsjung.de)
Copyright (c) 2020 Lars Jung (https://larsjung.de)

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
4 changes: 2 additions & 2 deletions dist/jquery.fracs.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*! jquery-fracs v1.0.1 - https://larsjung.de/jquery-fracs/ */
/*! jquery-fracs v1.0.2 - https://larsjung.de/jquery-fracs/ */
"use strict";

function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }

(function () {
var WIN = window; // eslint-disable-line
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.fracs.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions ghu.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
const {resolve, join} = require('path');
const {resolve} = require('path');
const {ghu, babel, includeit, pug, less, cssmin, jszip, mapfn, read, remove, uglify, wrap, write} = require('ghu');

const NAME = 'jquery-fracs';

const ROOT = resolve(__dirname);
const SRC = join(ROOT, 'src');
const BUILD = join(ROOT, 'build');
const DIST = join(ROOT, 'dist');
const SRC = resolve(ROOT, 'src');
const BUILD = resolve(ROOT, 'build');
const DIST = resolve(ROOT, 'dist');

ghu.defaults('release');

Expand Down
Loading

0 comments on commit dbf8e50

Please sign in to comment.