Skip to content

Commit

Permalink
➖fix: remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
daybrush committed Jun 24, 2019
1 parent 8178178 commit d8938f5
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@scenejs/timeline",
"version": "0.2.1",
"version": "0.2.2",
"description": "A library that represents the timeline of Scene.js. You can control time, properties, and items.",
"main": "./dist/timeline.cjs.js",
"module": "./dist/timeline.esm.js",
Expand Down Expand Up @@ -42,7 +42,7 @@
"@egjs/component": "^2.1.2",
"keycon": "^0.2.2",
"preact": "^8.4.2",
"preact-timeline": "^0.2.2",
"preact-timeline": "^0.2.3",
"scenejs": "^1.0.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/preact-timeline/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

<p align="middle"><img src="https://daybrush.com/scenejs/images/clapperboard.png" width="250"/></p>
<p align="middle"><img src="https://raw.githubusercontent.com/daybrush/scenejs-timeline/master/demo/images/logo.png" width="320"/></p>
<h2 align="middle">Scene.js Preact Timeline</h2>
<p align="middle"><a href="https://badge.fury.io/js/preact-timeline" target="_blank"><img src="https://badge.fury.io/js/preact-timeline.svg" alt="npm version" height="18"/></a> <img src="https://img.shields.io/badge/language-typescript-blue.svg"/> <a href="https://github.com/daybrush/scenejs-timeline/blob/master/LICENSE" target="_blank"><img src="https://img.shields.io/github/license/daybrush/scenejs-timeline.svg"/></a></p>

Expand Down
8 changes: 4 additions & 4 deletions packages/preact-timeline/package-lock.json

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

4 changes: 2 additions & 2 deletions packages/preact-timeline/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "preact-timeline",
"version": "0.2.2",
"version": "0.2.3",
"description": "A library that represents the timeline of Scene.js. You can control time, properties, and items.",
"main": "./dist/timeline.cjs.js",
"module": "./dist/timeline.esm.js",
Expand Down Expand Up @@ -48,7 +48,7 @@
"preact": "^8.4.2",
"preact-compat": "^3.18.5",
"print-sizes": "0.0.4",
"react-scenejs-timeline": "^0.2.3",
"react-scenejs-timeline": "^0.2.4",
"rollup-plugin-css-bundle": "^1.0.4",
"rollup-plugin-env": "^0.21.4",
"shape-svg": "^0.3.3",
Expand Down
3 changes: 2 additions & 1 deletion packages/react-scenejs-timeline/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-scenejs-timeline",
"version": "0.2.3",
"version": "0.2.5",
"description": "A library that represents the timeline of Scene.js. You can control time, properties, and items.",
"main": "./dist/timeline.cjs.js",
"module": "./dist/timeline.esm.js",
Expand All @@ -15,6 +15,7 @@
"keywords": [
"scene",
"scenejs",
"scene.js",
"css",
"animate",
"animation",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ export default class ValuesArea extends ElementComponent<{
if (!parentEl) {
return;
}
console.log(target, value);
const index = findIndex(this.values, v => v.getElement() === parentEl);

if (index === -1) {
Expand Down

0 comments on commit d8938f5

Please sign in to comment.