added es6 distribution
This commit is contained in:
		
							parent
							
								
									14a3fbc638
								
							
						
					
					
						commit
						b471c91d1d
					
				@ -6,8 +6,8 @@ Y({
 | 
				
			|||||||
    name: 'memory'
 | 
					    name: 'memory'
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  connector: {
 | 
					  connector: {
 | 
				
			||||||
    name: 'webrtc',
 | 
					    name: 'websockets-client',
 | 
				
			||||||
    room: 'offlineEditingDemo',
 | 
					    room: 'textEditingDem0',
 | 
				
			||||||
    debug: true
 | 
					    debug: true
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  types: ['Array', 'Text'],
 | 
					  types: ['Array', 'Text'],
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,5 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
# 
 | 
					# 
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Yjs is a framework for optimistic concurrency control and automatic conflict resolution on shared data types. The framework implements a new OT-like concurrency algorithm and provides similar functionality as [ShareJs] and [OpenCoweb]. Yjs was designed to handle concurrent actions on arbitrary complex data types like Text, Json, and XML. We provide a tutorial and some applications for this framework on our [homepage](http://y-js.org/).
 | 
					Yjs is a framework for optimistic concurrency control and automatic conflict resolution on shared data types. The framework implements a new OT-like concurrency algorithm and provides similar functionality as [ShareJs] and [OpenCoweb]. Yjs was designed to handle concurrent actions on arbitrary complex data types like Text, Json, and XML. We provide a tutorial and some applications for this framework on our [homepage](http://y-js.org/).
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -131,6 +131,7 @@ This is a complete rewrite of the 0.5 version of Yjs. Since Yjs 1.0 it is possib
 | 
				
			|||||||
* The Connector definition slightly changed (I'll update the wiki)
 | 
					* The Connector definition slightly changed (I'll update the wiki)
 | 
				
			||||||
* The Type definitions completely changed, so you have to rewrite them (I'll rewrite the article in the wiki)
 | 
					* The Type definitions completely changed, so you have to rewrite them (I'll rewrite the article in the wiki)
 | 
				
			||||||
* Support for several packaging systems
 | 
					* Support for several packaging systems
 | 
				
			||||||
 | 
					* Flowtype
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## Contribution
 | 
					## Contribution
 | 
				
			||||||
 | 
				
			|||||||
@ -1,6 +1,6 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
  "name": "yjs",
 | 
					  "name": "yjs",
 | 
				
			||||||
  "version": "0.6.38",
 | 
					  "version": "0.6.42",
 | 
				
			||||||
  "homepage": "y-js.org",
 | 
					  "homepage": "y-js.org",
 | 
				
			||||||
  "authors": [
 | 
					  "authors": [
 | 
				
			||||||
    "Kevin Jahns <kevin.jahns@rwth-aachen.de>"
 | 
					    "Kevin Jahns <kevin.jahns@rwth-aachen.de>"
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										37
									
								
								package.json
									
									
									
									
									
								
							
							
						
						
									
										37
									
								
								package.json
									
									
									
									
									
								
							@ -1,19 +1,22 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
  "name": "yjs",
 | 
					  "name": "yjs",
 | 
				
			||||||
  "version": "0.6.40",
 | 
					  "version": "0.6.42",
 | 
				
			||||||
  "description": "A framework for real-time p2p shared editing on arbitrary complex data types",
 | 
					  "description": "A framework for real-time p2p shared editing on arbitrary complex data types",
 | 
				
			||||||
  "main": "y.js",
 | 
					  "main": "y.js",
 | 
				
			||||||
  "scripts": {
 | 
					  "scripts": {
 | 
				
			||||||
 | 
					    "test": "node --harmony ./node_modules/.bin/gulp test",
 | 
				
			||||||
    "lint": "./node_modules/.bin/standard"
 | 
					    "lint": "./node_modules/.bin/standard"
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  "pre-commit": [
 | 
					  "pre-commit": [
 | 
				
			||||||
    "lint"
 | 
					    "lint",
 | 
				
			||||||
 | 
					    "test"
 | 
				
			||||||
  ],
 | 
					  ],
 | 
				
			||||||
  "standard": {
 | 
					  "standard": {
 | 
				
			||||||
    "parser": "babel-eslint",
 | 
					    "parser": "babel-eslint",
 | 
				
			||||||
    "ignore": [
 | 
					    "ignore": [
 | 
				
			||||||
      "build/**",
 | 
					      "build/**",
 | 
				
			||||||
      "dist/**",
 | 
					      "dist/**",
 | 
				
			||||||
 | 
					      "declarations/**",
 | 
				
			||||||
      "./y.js",
 | 
					      "./y.js",
 | 
				
			||||||
      "./y.js.map"
 | 
					      "./y.js.map"
 | 
				
			||||||
    ]
 | 
					    ]
 | 
				
			||||||
@ -39,7 +42,35 @@
 | 
				
			|||||||
  },
 | 
					  },
 | 
				
			||||||
  "homepage": "http://y-js.org",
 | 
					  "homepage": "http://y-js.org",
 | 
				
			||||||
  "devDependencies": {
 | 
					  "devDependencies": {
 | 
				
			||||||
 | 
					    "babel-plugin-transform-runtime": "^6.1.18",
 | 
				
			||||||
 | 
					    "babel-preset-es2015": "^6.1.18",
 | 
				
			||||||
 | 
					    "babelify": "^7.2.0",
 | 
				
			||||||
 | 
					    "browserify": "^12.0.1",
 | 
				
			||||||
 | 
					    "eslint": "^1.10.2",
 | 
				
			||||||
 | 
					    "gulp": "^3.9.0",
 | 
				
			||||||
 | 
					    "gulp-bump": "^1.0.0",
 | 
				
			||||||
 | 
					    "gulp-concat": "^2.6.0",
 | 
				
			||||||
 | 
					    "gulp-filter": "^3.0.1",
 | 
				
			||||||
 | 
					    "gulp-git": "^1.6.0",
 | 
				
			||||||
 | 
					    "gulp-if": "^2.0.0",
 | 
				
			||||||
 | 
					    "gulp-jasmine": "^2.0.1",
 | 
				
			||||||
 | 
					    "gulp-jasmine-browser": "^0.2.3",
 | 
				
			||||||
 | 
					    "gulp-load-plugins": "^1.0.0",
 | 
				
			||||||
 | 
					    "gulp-prompt": "^0.1.2",
 | 
				
			||||||
 | 
					    "gulp-rename": "^1.2.2",
 | 
				
			||||||
 | 
					    "gulp-serve": "^1.2.0",
 | 
				
			||||||
 | 
					    "gulp-shell": "^0.5.1",
 | 
				
			||||||
 | 
					    "gulp-sourcemaps": "^1.5.2",
 | 
				
			||||||
 | 
					    "gulp-tag-version": "^1.3.0",
 | 
				
			||||||
 | 
					    "gulp-uglify": "^1.5.1",
 | 
				
			||||||
 | 
					    "gulp-util": "^3.0.6",
 | 
				
			||||||
 | 
					    "gulp-watch": "^4.3.5",
 | 
				
			||||||
 | 
					    "minimist": "^1.2.0",
 | 
				
			||||||
    "pre-commit": "^1.1.1",
 | 
					    "pre-commit": "^1.1.1",
 | 
				
			||||||
    "standard": "^5.2.2"
 | 
					    "regenerator": "^0.8.42",
 | 
				
			||||||
 | 
					    "run-sequence": "^1.1.4",
 | 
				
			||||||
 | 
					    "standard": "^5.2.2",
 | 
				
			||||||
 | 
					    "vinyl-buffer": "^1.0.0",
 | 
				
			||||||
 | 
					    "vinyl-source-stream": "^1.1.0"
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user