ember-data
Advanced tools
Comparing version 1.0.0-beta.14.1 to 1.0.0-beta.15
@@ -11,4 +11,5 @@ 'use strict'; | ||
afterInstall: function() { | ||
return this.addBowerPackageToProject('ember-data', '1.0.0-beta.14.1'); | ||
var json = require('../../../../package.json'); | ||
return this.addBowerPackageToProject('ember-data', json.version); | ||
} | ||
}; |
{ | ||
"name": "ember-data", | ||
"version": "1.0.0-beta.14.1", | ||
"version": "1.0.0-beta.15", | ||
"namespace": "DS", | ||
@@ -17,11 +17,12 @@ "repository": "git://github.com/emberjs/data.git", | ||
"scripts": { | ||
"prepublish": "bower install && npm run-script dist", | ||
"build": "ember build", | ||
"build:production": "ember build --environment=production", | ||
"prepublish": "bower install && npm run-script build:production", | ||
"start": "ember serve", | ||
"dist": "ember build --environment=production", | ||
"test": "testem -R dot ci", | ||
"publish-build": "npm run dist && ./bin/publish_to_s3.js", | ||
"testem-local": "testem -R dot ci", | ||
"testem-beta": "testem -f config/testem-beta.json -R dot ci", | ||
"testem-canary": "testem -f config/testem-canary.json -R dot ci", | ||
"testem-stable": "testem -f config/testem-stable.json -R dot ci" | ||
"test": "jscs packages && testem -R dot ci", | ||
"publish-build": "npm run build:production && ./bin/publish_to_s3.js", | ||
"test:local": "testem -R dot ci", | ||
"test:beta": "testem -f config/testem-beta.json -R dot ci", | ||
"test:canary": "testem -f config/testem-canary.json -R dot ci", | ||
"test:stable": "testem -f config/testem-stable.json -R dot ci" | ||
}, | ||
@@ -40,7 +41,8 @@ "devDependencies": { | ||
"broccoli-file-mover": "~0.2.0", | ||
"broccoli-jscs": "0.0.14", | ||
"broccoli-jshint": "^0.5.1", | ||
"broccoli-merge-trees": "^0.1.4", | ||
"broccoli-render-template": "0.0.3", | ||
"broccoli-replace": "~0.2.0", | ||
"broccoli-static-compiler": "^0.2.1", | ||
"broccoli-replace": "~0.2.0", | ||
"broccoli-uglify-js": "^0.1.3", | ||
@@ -57,2 +59,3 @@ "broccoli-wrap": "0.0.2", | ||
"git-repo-version": "0.0.2", | ||
"jscs": "^1.11.0", | ||
"testem": "^0.6.19", | ||
@@ -59,0 +62,0 @@ "yuidocjs": "~0.3.46" |
@@ -37,4 +37,3 @@ ## Ember Data [![Build Status](https://secure.travis-ci.org/emberjs/data.svg?branch=master)](http://travis-ci.org/emberjs/data) | ||
If you need to support Internet Explorer, you will need to use es5-shim.js and | ||
es5-sham.js from [es5-shim](https://github.com/es-shims/es5-shim). | ||
Internet Explorer 8 support requires Ember 1.8.1 (which provides a polyfill for `Object.create`). | ||
@@ -61,5 +60,5 @@ ### Instantiating the Store | ||
```js | ||
var attr = DS.attr, | ||
hasMany = DS.hasMany, | ||
belongsTo = DS.belongsTo; | ||
var attr = DS.attr; | ||
var hasMany = DS.hasMany; | ||
var belongsTo = DS.belongsTo; | ||
@@ -86,4 +85,4 @@ App.BlogPost = DS.Model.extend({ | ||
// app/models/blog-post.js | ||
var attr = DS.attr, | ||
hasMany = DS.hasMany; | ||
var attr = DS.attr; | ||
var hasMany = DS.hasMany; | ||
@@ -98,4 +97,4 @@ export default DS.Model.extend({ | ||
// app/models/comment.js | ||
var attr = DS.attr, | ||
belongsTo = DS.belongsTo; | ||
var attr = DS.attr; | ||
var belongsTo = DS.belongsTo; | ||
@@ -102,0 +101,0 @@ export default DS.Model.extend({ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
39
8879
31
4
197
1