Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Aug 12, 2019. It is now read-only.

Commit b58d657

Browse files
committed
updated cyclejs
1 parent 2923130 commit b58d657

File tree

8 files changed

+34
-32
lines changed

8 files changed

+34
-32
lines changed

cyclejs-dom-v14.1.0/package.json

Lines changed: 0 additions & 23 deletions
This file was deleted.
File renamed without changes.

cyclejs-dom-v14.1.0/index.html renamed to cyclejs-dom-v17.1.0/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<title>Cycle.js dom@14.1.0</title>
5+
<title>Cycle.js dom@17.1.0</title>
66
<link href="/css/currentStyle.css" rel="stylesheet"/>
77
</head>
88
<body>

cyclejs-dom-v17.1.0/package.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "js-framework-benchmark-cyclejs",
3+
"version": "1.0.0",
4+
"description": "Benchmark for Cycle.js framework",
5+
"scripts": {
6+
"build-dev": "webpack -w -d",
7+
"build-prod": "webpack -p"
8+
},
9+
"devDependencies": {
10+
"babel-core": "6.24.1",
11+
"babel-loader": "7.0.0",
12+
"babel-plugin-transform-react-jsx": "6.24.1",
13+
"babel-preset-es2015": "6.24.1",
14+
"babel-preset-stage-0": "6.24.1",
15+
"webpack": "2.5.1"
16+
},
17+
"dependencies": {
18+
"@cycle/dom": "17.1.0",
19+
"@cycle/xstream-run": "4.2.0",
20+
"snabbdom-jsx": "0.3.1",
21+
"xstream": "10.8.0"
22+
}
23+
}

cyclejs-dom-v14.1.0/src/main.jsx renamed to cyclejs-dom-v17.1.0/src/main.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ function view(state$) {
9292
<div className='jumbotron'>
9393
<div className='row'>
9494
<div className='col-md-6'>
95-
<h1>Cycle.js dom@14.1.0</h1>
95+
<h1>Cycle.js dom@17.1.0</h1>
9696
</div>
9797
<div className="col-md-6">
9898
<div className="row">

cyclejs-dom-v14.1.0/webpack.config.js renamed to cyclejs-dom-v17.1.0/webpack.config.js

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
'use strict';
2+
var path = require('path')
23

34
var cache = {};
45
var loaders = [
@@ -32,7 +33,7 @@ var loaders = [
3233
}
3334
];
3435
var extensions = [
35-
'', '.js', '.jsx', '.es6.js'
36+
'.js', '.jsx', '.es6.js'
3637
];
3738

3839
module.exports = [{
@@ -44,16 +45,17 @@ module.exports = [{
4445
main: './src/main',
4546
},
4647
output: {
47-
path: './dist',
48+
path: path.resolve(__dirname, "dist"),
4849
filename: '[name].js',
4950
sourceMapFilename: "[file].map",
5051
},
5152
resolve: {
52-
extensions: extensions,
53-
root: [
53+
modules: [
5454
__dirname,
55-
__dirname + '/src'
55+
path.resolve(__dirname, "src"),
56+
"node_modules"
5657
],
58+
extensions: extensions,
5759
alias: {
5860
}
5961
}

webdriver-ts/src/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export let frameworks = [
4141
f("binding.scala-v10.0.1", false, {uri: "binding.scala-v10.0.1/target/web/stage"}),
4242
f("bobril-v7.1.2", false),
4343
f("choo-v5.4.0", true),
44-
f("cyclejs-dom-v14.1.0", true),
44+
f("cyclejs-dom-v17.1.0", true),
4545
f("Datum-v0.8.0", true),
4646
f("dio-v3.0.5", true),
4747
f("domvm-v2.1.4-non-keyed", true),

webdriver-ts/table.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)