Skip to content

Commit

Permalink
Published version 1.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mweststrate committed Feb 1, 2016
1 parent f3110eb commit d6d1cf1
Show file tree
Hide file tree
Showing 6 changed files with 73 additions and 66 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# 1.2.4

* Fixed: observable arrays didn't properly apply modifiers if created using `asFlat([])` or `fastArray([])`
* Don't try to make frozen objects observable (by @andykog)
* `observableArray.reverse` no longer mutates the arry but just returns a sorted copy
* Updated tests to use babel6

# 1.2.3

Expand Down
10 changes: 7 additions & 3 deletions dist/mobservable.js

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

2 changes: 1 addition & 1 deletion dist/mobservable.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/mobservable.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/mobservable.min.js.map

Large diffs are not rendered by default.

118 changes: 59 additions & 59 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,60 +1,60 @@
{
"name": "mobservable",
"version": "1.2.3",
"description": "Observable data. Reactive functions. Simple code.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"test": "npm run buildtest && tape test/*.js",
"test-browser": "npm run buildtest && ( browserify test/*.js | tape-run )",
"test-travis": "npm run coverage",
"coverage": "npm run buildtest && istanbul cover tape test/*.js && cat ./coverage/lcov.info|coveralls",
"perf": "npm run build && time node --expose-gc test/perf/index.js",
"prepublish": "npm run clean && npm run build-dist",
"clean": "rm -rf lib/ dist/",
"build": "tsc",
"clean-build": "npm run clean && npm run build",
"build-dist": "npm run build && webpack && uglifyjs --in-source-map dist/mobservable.js.map -s dist/mobservable.js --source-map dist/mobservable.min.js.map -o dist/mobservable.min.js",
"buildtest": "npm run build && npm run build-typescript-tests && npm run build-babel-tests",
"build-typescript-tests": "tsc -m commonjs -t es5 --experimentalDecorators --noImplicitAny --outDir test test/typescript-tests.ts",
"build-babel-tests": "babel test/babel/babel-tests.js -o test/babel-tests.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mweststrate/mobservable.git"
},
"author": "Michel Weststrate",
"license": "MIT",
"bugs": {
"url": "https://github.com/mweststrate/mobservable/issues"
},
"homepage": "https://mweststrate.github.io/mobservable",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"browserify": "^12.0.1",
"coveralls": "^2.11.4",
"istanbul": "^0.3.21",
"lodash.intersection": "^3.2.0",
"tape": "^4.2.2",
"tape-run": "^2.1.0",
"typescript": "^1.6.2",
"uglify-js": "^2.5.0",
"webpack": "^1.12.2"
},
"keywords": [
"mobservable",
"observable",
"react-component",
"react",
"reactjs",
"reactive",
"model",
"frp",
"functional-reactive-programming"
]
}
"name": "mobservable",
"version": "1.2.4",
"description": "Observable data. Reactive functions. Simple code.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"test": "npm run buildtest && tape test/*.js",
"test-browser": "npm run buildtest && ( browserify test/*.js | tape-run )",
"test-travis": "npm run coverage",
"coverage": "npm run buildtest && istanbul cover tape test/*.js && cat ./coverage/lcov.info|coveralls",
"perf": "npm run build && time node --expose-gc test/perf/index.js",
"prepublish": "npm run clean && npm run build-dist",
"clean": "rm -rf lib/ dist/",
"build": "tsc",
"clean-build": "npm run clean && npm run build",
"build-dist": "npm run build && webpack && uglifyjs --in-source-map dist/mobservable.js.map -s dist/mobservable.js --source-map dist/mobservable.min.js.map -o dist/mobservable.min.js",
"buildtest": "npm run build && npm run build-typescript-tests && npm run build-babel-tests",
"build-typescript-tests": "tsc -m commonjs -t es5 --experimentalDecorators --noImplicitAny --outDir test test/typescript-tests.ts",
"build-babel-tests": "babel test/babel/babel-tests.js -o test/babel-tests.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mweststrate/mobservable.git"
},
"author": "Michel Weststrate",
"license": "MIT",
"bugs": {
"url": "https://github.com/mweststrate/mobservable/issues"
},
"homepage": "https://mweststrate.github.io/mobservable",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"browserify": "^12.0.1",
"coveralls": "^2.11.4",
"istanbul": "^0.3.21",
"lodash.intersection": "^3.2.0",
"tape": "^4.2.2",
"tape-run": "^2.1.0",
"typescript": "^1.6.2",
"uglify-js": "^2.5.0",
"webpack": "^1.12.2"
},
"keywords": [
"mobservable",
"observable",
"react-component",
"react",
"reactjs",
"reactive",
"model",
"frp",
"functional-reactive-programming"
]
}

0 comments on commit d6d1cf1

Please sign in to comment.