Skip to content

Commit

Permalink
WIP trying pika and microbundle, moving to ava, moving away from webp…
Browse files Browse the repository at this point in the history
…ack and rollup
  • Loading branch information
lunelson committed May 28, 2019
1 parent e04d48b commit dc26eea
Show file tree
Hide file tree
Showing 45 changed files with 48,848 additions and 9,982 deletions.
14 changes: 14 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# EditorConfig is awesome: http://EditorConfig.org

root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
38 changes: 38 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"env": {
"es6": true,
"node": true,
"jest": true,
"commonjs": true,
"browser": true
},
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2018,
"ecmaFeatures": {
"impliedStrict": true
}
},
"plugins": [
"import",
"prettier"
],
"extends": [
"eslint:recommended",
"plugin:import/errors",
"plugin:import/warnings",
"prettier"
],
"rules": {
"no-bitwise": ["error", { "allow": ["~"] }],
"no-unused-vars": "off",
"no-console": "off",
"import/order": [
"error", {
"newlines-between": "always",
"groups": ["builtin", "external"]
}
],
"prettier/prettier": ["error"]
}
}
19 changes: 0 additions & 19 deletions .eslintrc.js

This file was deleted.

1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
.DS_Store
node_modules
package-lock.json
4 changes: 4 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
_archive
assets
pkg
web
4 changes: 4 additions & 0 deletions .prettierrc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
trailingComma: "all"
bracketSpacing: true
singleQuote: true
printWidth: 120
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
### Changelog

All notable changes to this project will be documented in this file. Dates are displayed in UTC.

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### Unreleased

- re-add submodules NOT as submodules
- delete fonts
- re-org files; tried different build scenarios; collected all archived versions
13 changes: 13 additions & 0 deletions NOTES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
## promotion

- reddit
- humblebrag.club

## build options

- consider using microbundle to build; see pkg entry naming conventions also
https://github.com/developit/microbundle
- consider @pika/pack to build,
and making sure this is compatible with the pika search
https://www.pikapkg.com/about
https://github.com/pikapkg/standard-pkg
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
<img src="split-ease.svg" alt="" width="480">
<img src="assets/banner.svg" width="100%" alt="Split-Ease Logo">

# Split-Ease

732 B: split-ease.js.gz
643 B: split-ease.js.br
728 B: split-ease.mjs.gz
644 B: split-ease.mjs.br
792 B: split-ease.umd.js.gz
698 B: split-ease.umd.js.br

## The easing curve with a beginning, middle and end.

### Usage
Expand Down
Loading

0 comments on commit dc26eea

Please sign in to comment.