@squadbase/connectors 0.0.1 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +37 -0
- package/dist/index.d.ts +718 -69
- package/dist/index.js +2946 -92
- package/package.json +12 -18
- package/dist/index.ui.d.ts +0 -14
- package/dist/index.ui.js +0 -387
package/README.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# @squadbase/connectors
|
|
2
|
+
|
|
3
|
+
Squadbase Connectors - データソースへの接続を提供するパッケージ。
|
|
4
|
+
|
|
5
|
+
## セットアップ
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
### lockfile を再生成する場合
|
|
12
|
+
|
|
13
|
+
devDependency の `@squadbase/dashboard-types` は GitHub Packages に公開されているため、lockfile を削除して再生成する場合はレジストリのフラグ指定が必要です。
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
rm package-lock.json
|
|
17
|
+
npm install --@squadbase:registry=https://npm.pkg.github.com
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
lockfile が存在する場合は `resolved` URL が記録されているため、通常の `npm install` で問題ありません。
|
|
21
|
+
|
|
22
|
+
## ビルド
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
npm run build
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## npm への公開
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
npm run build
|
|
32
|
+
npm publish
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## コネクターの追加・管理
|
|
36
|
+
|
|
37
|
+
詳細は [docs/connector.md](docs/connector.md) を参照してください。
|