Skip to content

Commit 6542029

Browse files
rename core packages: core -> common; di-core -> core
closes #4
1 parent 02f1554 commit 6542029

File tree

244 files changed

+698
-707
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

244 files changed

+698
-707
lines changed

README.md

Lines changed: 3 additions & 3 deletions

aws-lambda-wrap/README.md

Lines changed: 1 addition & 1 deletion

aws-lambda-wrap/npm.link

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
22

3+
npm link @dandi/common
34
npm link @dandi/core
4-
npm link @dandi/di-core
55
npm link @dandi/model-validation

aws-lambda-wrap/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aws-lambda-wrap/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dandi/aws-lambda",
3-
"version": "1.0.0-alpha.12",
3+
"version": "1.0.0-alpha.13",
44
"scripts": {},
55
"repository": {
66
"type": "git",
@@ -13,9 +13,9 @@
1313
"homepage": "https://github.com/dandi-mvc/dandi#readme",
1414
"module": "index.js",
1515
"peerDependencies": {
16-
"@dandi/core": "1.0.0-alpha.12",
17-
"@dandi/di-core": "1.0.0-alpha.12",
18-
"@dandi/model-validation": "1.0.0-alpha.12"
16+
"@dandi/common": "1.0.0-alpha.13",
17+
"@dandi/core": "1.0.0-alpha.13",
18+
"@dandi/model-validation": "1.0.0-alpha.13"
1919
},
2020
"dependencies": {
2121
"aws-lambda": "^0.1.2"

aws-lambda-wrap/src/dandi.aws.lambda.error.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { AppError } from '@dandi/core';
1+
import { AppError } from '@dandi/common';
22

33
export class DandiAwsLambdaError extends AppError {
44

aws-lambda-wrap/src/dynamo.stream.event.transformer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Injectable } from '@dandi/di-core';
1+
import { Injectable } from '@dandi/core';
22

33
import { DynamoDBRecord, DynamoDBStreamEvent } from 'aws-lambda';
44

aws-lambda-wrap/src/http.event.options.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { Constructor } from '@dandi/core';
2-
import { InjectionToken } from '@dandi/di-core';
1+
import { Constructor } from '@dandi/common';
2+
import { InjectionToken } from '@dandi/core';
33

44
import { localOpinionatedToken } from './local.token';
55

aws-lambda-wrap/src/http.event.transformer.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { stubProvider, testHarness } from '@dandi/di-core-testing';
1+
import { stubProvider, testHarness } from '@dandi/core-testing';
22
import { DecoratorModelValidator, ModelValidator } from '@dandi/model-validation';
33

44
import { APIGatewayProxyEvent, Context } from 'aws-lambda';

aws-lambda-wrap/src/http.event.transformer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Inject, Injectable, Optional } from '@dandi/di-core';
1+
import { Inject, Injectable, Optional } from '@dandi/core';
22
import { ModelValidator } from '@dandi/model-validation';
33

44
import { APIGatewayProxyEvent, APIGatewayEventRequestContext, Context } from 'aws-lambda';

0 commit comments

Comments
 (0)