duckdb-tinyorm 1.0.31 → 1.0.37
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.
|
@@ -21,6 +21,11 @@ jobs:
|
|
|
21
21
|
registry-url: "https://registry.npmjs.org"
|
|
22
22
|
always-auth: true
|
|
23
23
|
|
|
24
|
+
- name: Authenticate to npm
|
|
25
|
+
run: |
|
|
26
|
+
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
|
|
27
|
+
|
|
28
|
+
|
|
24
29
|
- name: Install dependencies
|
|
25
30
|
run: npm install
|
|
26
31
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "duckdb-tinyorm",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.37",
|
|
4
4
|
"description": "TinyORM for Duckdb, easy setup",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -11,6 +11,9 @@
|
|
|
11
11
|
"dev": "nodemon --exec ts-node src/test.ts",
|
|
12
12
|
"start": "node dist/index.js"
|
|
13
13
|
},
|
|
14
|
+
"publishConfig": {
|
|
15
|
+
"registry": "https://registry.npmjs.org"
|
|
16
|
+
},
|
|
14
17
|
"repository": {
|
|
15
18
|
"type": "git",
|
|
16
19
|
"url": "git+https://github.com/naimsulejmani/duckdb-tinyorm.git"
|