Skip to content

Commit

Permalink
fix dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
zhabinka committed Jun 19, 2019
1 parent f6d856a commit cf4c7c4
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion __tests__/test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as list from 'hexlet-pairs-data';
import * as list from '@hexlet/pairs-data';
import { attach, typeTag, contents } from '../src';

describe('Types', () => {
Expand Down
36 changes: 18 additions & 18 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hexlet/tagged-types",
"version": "1.0.1",
"version": "1.0.2",
"description": "",
"main": "dist/index.js",
"scripts": {
Expand All @@ -24,8 +24,8 @@
},
"homepage": "https://github.com/hexlet-components/js-types#readme",
"dependencies": {
"hexlet-pairs": "^1.0.7",
"hexlet-pairs-data": "^1.0.8"
"@hexlet/pairs": "^1.0.7",
"@hexlet/pairs-data": "^1.0.8"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as pairs from 'hexlet-pairs';
import * as pairs from '@hexlet/pairs';

/**
* Tagged data constructor
Expand Down

0 comments on commit cf4c7c4

Please sign in to comment.