Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Rico Huijbers committed Jun 11, 2018
1 parent 0581b04 commit 44fb47f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@aws-cdk/core",
"name": "aws-cdk",
"pkglint": {
"ignore": true
},
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-cdk/bin/cdk.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env node
import 'source-map-support/register';

import { deepMerge, isEmpty, partition } from '@aws-cdk/util';
import * as cxapi from '@aws-cdk/cx-api';
import { deepMerge, isEmpty, partition } from '@aws-cdk/util';
import { exec, spawn } from 'child_process';
import { blue, green } from 'colors/safe';
import * as fs from 'fs-extra';
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-cdk/lib/api/deploy-stack.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { App, Stack } from '@aws-cdk/core';
import { cloudformation } from '@aws-cdk/resources';
import { StackInfo, SynthesizedStack } from '@aws-cdk/cx-api';
import { cloudformation } from '@aws-cdk/resources';
import { CloudFormation } from 'aws-sdk';
import * as colors from 'colors/safe';
import * as crypto from 'crypto';
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-cdk/lib/renames.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { makeObject } from '@aws-cdk/util';
import * as cxapi from '@aws-cdk/cx-api';
import { makeObject } from '@aws-cdk/util';

type RenameTable = {[key: string]: string};

Expand Down

0 comments on commit 44fb47f

Please sign in to comment.