Skip to content

Commit

Permalink
aureooms- > @aureooms/ : update js code
Browse files Browse the repository at this point in the history
  • Loading branch information
make-github-pseudonymous-again committed Feb 16, 2017
1 parent e648d9a commit 75f37d3
Show file tree
Hide file tree
Showing 9 changed files with 31 additions and 31 deletions.
18 changes: 9 additions & 9 deletions lib/index.js

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

18 changes: 9 additions & 9 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ import {
NotImplementedError ,
TypeError ,
ValueError ,
} from 'aureooms-js-error' ;
} from '@aureooms/js-error' ;

import chainmap from 'aureooms-js-collections-chainmap' ;
import dict from 'aureooms-js-collections-dict' ;
import ordereddict from 'aureooms-js-collections-ordereddict' ;
import defaultdict from 'aureooms-js-collections-defaultdict' ;
import chainmap from '@aureooms/js-collections-chainmap' ;
import dict from '@aureooms/js-collections-dict' ;
import ordereddict from '@aureooms/js-collections-ordereddict' ;
import defaultdict from '@aureooms/js-collections-defaultdict' ;

import {
deque ,
Expand All @@ -19,11 +19,11 @@ import {
EmptyDeque ,
SingleElementDeque ,
UnboundedDeque ,
} from 'aureooms-js-collections-deque' ;
} from '@aureooms/js-collections-deque' ;

import namedtuple from 'aureooms-js-collections-namedtuple' ;
import counter from 'aureooms-js-collections-counter' ;
import set from 'aureooms-js-collections-set' ;
import namedtuple from '@aureooms/js-collections-namedtuple' ;
import counter from '@aureooms/js-collections-counter' ;
import set from '@aureooms/js-collections-set' ;

const collections = {

Expand Down
4 changes: 2 additions & 2 deletions test/src/chainmap.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import test from 'ava' ;

import { increasing , lexicographical } from "aureooms-js-compare" ;
import { increasing , lexicographical } from "@aureooms/js-compare" ;
const lex = lexicographical( increasing ) ;

import { sorted } from "aureooms-js-itertools" ;
import { sorted } from "@aureooms/js-itertools" ;

import { KeyError , dict , chainmap } from '../../src' ;

Expand Down
4 changes: 2 additions & 2 deletions test/src/counter.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import test from 'ava' ;

import { sorted } from "aureooms-js-itertools" ;
import { increasing } from 'aureooms-js-compare' ;
import { sorted } from "@aureooms/js-itertools" ;
import { increasing } from '@aureooms/js-compare' ;

import { counter , NotImplementedError } from '../../src' ;

Expand Down
6 changes: 3 additions & 3 deletions test/src/defaultdict.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import test from 'ava' ;

import { $0 as default_factory } from "aureooms-js-number" ;
import { increasing , lexicographical } from "aureooms-js-compare" ;
import { sorted } from "aureooms-js-itertools" ;
import { $0 as default_factory } from "@aureooms/js-number" ;
import { increasing , lexicographical } from "@aureooms/js-compare" ;
import { sorted } from "@aureooms/js-itertools" ;

const lex = lexicographical( increasing ) ;

Expand Down
2 changes: 1 addition & 1 deletion test/src/deque.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
chain as c ,
map as m ,
filter as f ,
} from 'aureooms-js-itertools' ;
} from '@aureooms/js-itertools' ;

import {
IndexError ,
Expand Down
6 changes: 3 additions & 3 deletions test/src/dict.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import test from 'ava' ;

import { increasing , lexicographical } from "aureooms-js-compare" ;
import { sorted } from "aureooms-js-itertools" ;
import { partial , rpartial } from "aureooms-js-functools" ;
import { increasing , lexicographical } from "@aureooms/js-compare" ;
import { sorted } from "@aureooms/js-itertools" ;
import { partial , rpartial } from "@aureooms/js-functools" ;

import { KeyError , dict , defaultdict , ordereddict } from '../../src' ;

Expand Down
2 changes: 1 addition & 1 deletion test/src/namedtuple.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { list } from "aureooms-js-itertools" ;
import { list } from "@aureooms/js-itertools" ;

import { namedtuple , ordereddict } from '../../src' ;

Expand Down
2 changes: 1 addition & 1 deletion test/src/ordereddict.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { list } from 'aureooms-js-itertools' ;
import { list } from '@aureooms/js-itertools' ;

import { dict , ordereddict , KeyError } from '../../src' ;

Expand Down

0 comments on commit 75f37d3

Please sign in to comment.