@chisel/typescript
Advanced tools
Comparing version 0.0.29 to 0.0.30
{ | ||
"name": "@chisel/typescript", | ||
"version": "0.0.29", | ||
"version": "0.0.30", | ||
"description": "Chisel Data Integration Platform TypeScript Essentials.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -8,3 +8,3 @@ # Chisel Data Integration Framework TypeScript Essentials | ||
``` | ||
npm install chisel-ts | ||
npm install @chisel/typescript | ||
``` | ||
@@ -19,9 +19,9 @@ | ||
```ts | ||
// Exports of 'chisel-ts' | ||
// Exports of '@chisel/typescript' | ||
import { | ||
Scraper, // Namespace for all exports of 'chisel-ts/scraper' | ||
Processor, // Namespace for all exports of `chisel-ts/processor` | ||
} from 'chisel-ts'; | ||
Scraper, // Namespace for all exports of '@chisel/typescript/scraper' | ||
Processor, // Namespace for all exports of `@chisel/typescript/processor` | ||
} from '@chisel/typescript'; | ||
// Exports of 'chisel-ts/processor' | ||
// Exports of '@chisel/typescript/processor' | ||
import { | ||
@@ -43,5 +43,5 @@ DatabaseAPI, // Database API for processors (full) | ||
MicrosetRef | ||
} from 'chisel-ts/processor'; | ||
} from '@chisel/typescript/processor'; | ||
// Exports of 'chisel-ts/scraper' | ||
// Exports of '@chisel/typescript/scraper' | ||
import { | ||
@@ -65,3 +65,3 @@ Scraper, | ||
MicrosetRef | ||
} from 'chisel-ts/scraper'; | ||
} from '@chisel/typescript/scraper'; | ||
``` | ||
@@ -68,0 +68,0 @@ |
15933