Skip to content

Commit

Permalink
import base from local path
Browse files Browse the repository at this point in the history
  • Loading branch information
luxzeitlos committed Mar 29, 2016
1 parent 838f25a commit cff938b
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion addon/validators/belongs-to.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

import Ember from 'ember';
import Base from 'ember-cp-validations/validators/base';
import Base from './base';

const {
get,
Expand Down
2 changes: 1 addition & 1 deletion addon/validators/collection.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

import Ember from 'ember';
import Base from 'ember-cp-validations/validators/base';
import Base from './base';

const {
isArray
Expand Down
2 changes: 1 addition & 1 deletion addon/validators/confirmation.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

import Ember from 'ember';
import Base from 'ember-cp-validations/validators/base';
import Base from './base';

const {
get,
Expand Down
2 changes: 1 addition & 1 deletion addon/validators/date.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

import Ember from 'ember';
import Base from 'ember-cp-validations/validators/base';
import Base from './base';
const moment = (self.requirejs.entries.moment || self.requirejs.entries['moment/index']) && self.require('moment').default;

if (typeof moment === 'undefined') {
Expand Down
2 changes: 1 addition & 1 deletion addon/validators/dependent.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

import Ember from 'ember';
import Base from 'ember-cp-validations/validators/base';
import Base from './base';

const {
get,
Expand Down
2 changes: 1 addition & 1 deletion addon/validators/ds-error.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

import Ember from 'ember';
import Base from 'ember-cp-validations/validators/base';
import Base from './base';
const DS = self.DS;

if (typeof self.DS === 'undefined') {
Expand Down
2 changes: 1 addition & 1 deletion addon/validators/exclusion.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

import Ember from 'ember';
import Base from 'ember-cp-validations/validators/base';
import Base from './base';

const {
typeOf,
Expand Down
2 changes: 1 addition & 1 deletion addon/validators/format.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

import Ember from 'ember';
import Base from 'ember-cp-validations/validators/base';
import Base from './base';

const {
get,
Expand Down
2 changes: 1 addition & 1 deletion addon/validators/has-many.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

import Ember from 'ember';
import Base from 'ember-cp-validations/validators/base';
import Base from './base';

const {
canInvoke
Expand Down
2 changes: 1 addition & 1 deletion addon/validators/inclusion.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

import Ember from 'ember';
import Base from 'ember-cp-validations/validators/base';
import Base from './base';

const {
typeOf,
Expand Down
2 changes: 1 addition & 1 deletion addon/validators/length.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

import Ember from 'ember';
import Base from 'ember-cp-validations/validators/base';
import Base from './base';

const {
get,
Expand Down
2 changes: 1 addition & 1 deletion addon/validators/number.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

import Ember from 'ember';
import Base from 'ember-cp-validations/validators/base';
import Base from './base';

const {
isEmpty
Expand Down
2 changes: 1 addition & 1 deletion addon/validators/presence.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

import Ember from 'ember';
import Base from 'ember-cp-validations/validators/base';
import Base from './base';

const {
get,
Expand Down

0 comments on commit cff938b

Please sign in to comment.