Skip to content

Commit e818304

Browse files
authored
feat(meerkat): make meerkat packages public (#102)
* feat(meerkat): make meerkat packages public * fix: version for the meerkat-dbm * fix: publish config registry
1 parent d26e83c commit e818304

File tree

6 files changed

+13
-14
lines changed

6 files changed

+13
-14
lines changed

.github/workflows/publish-package.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,33 +15,32 @@ jobs:
1515
- uses: actions/setup-node@v3
1616
with:
1717
node-version: 18.17
18-
registry-url: https://npm.pkg.github.com/
18+
registry-url: https://registry.npmjs.org/
1919
scope: '@devrev'
2020
- run: npm install
2121
- run: npx nx run-many --target=build --all --parallel
2222
- run: |
2323
cd ./dist/meerkat-dbm
24-
echo "//npm.pkg.github.com/:_authToken=${{secrets.NPM_PACKAGE_PUBLISH_TOKEN}}" >> .npmrc
24+
echo "//registry.npmjs.org/:_authToken=${{secrets.NPMJS_NPM_TOKEN}}" >> .npmrc
2525
npm publish
2626
continue-on-error: true
2727
2828
- run: |
2929
cd ./dist/meerkat-core
30-
echo "//npm.pkg.github.com/:_authToken=${{secrets.NPM_PACKAGE_PUBLISH_TOKEN}}" >> .npmrc
30+
echo "//registry.npmjs.org/:_authToken=${{secrets.NPMJS_NPM_TOKEN}}" >> .npmrc
3131
npm publish
3232
continue-on-error: true
3333
3434
- run: |
3535
cd ./dist/meerkat-node
36-
echo "//npm.pkg.github.com/:_authToken=${{secrets.NPM_PACKAGE_PUBLISH_TOKEN}}" >> .npmrc
36+
echo "//registry.npmjs.org/:_authToken=${{secrets.NPMJS_NPM_TOKEN}}" >> .npmrc
3737
npm publish
3838
continue-on-error: true
39-
39+
4040
- run: |
4141
cd ./dist/meerkat-browser
42-
echo "//npm.pkg.github.com/:_authToken=${{secrets.NPM_PACKAGE_PUBLISH_TOKEN}}" >> .npmrc
42+
echo "//registry.npmjs.org/:_authToken=${{secrets.NPMJS_NPM_TOKEN}}" >> .npmrc
4343
npm publish
4444
continue-on-error: true
45-
4645
env:
47-
NODE_AUTH_TOKEN: ${{secrets.NPM_PACKAGE_PUBLISH_TOKEN}}
46+
NODE_AUTH_TOKEN: ${{secrets.NPMJS_NPM_TOKEN}}

meerkat-browser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@
2424
"url": "git+https://github.com/devrev/meerkat.git"
2525
},
2626
"publishConfig": {
27-
"registry": "https://npm.pkg.github.com"
27+
"registry": "https://registry.npmjs.org"
2828
}
2929
}

meerkat-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"url": "git+https://github.com/devrev/meerkat.git"
2323
},
2424
"publishConfig": {
25-
"registry": "https://npm.pkg.github.com"
25+
"registry": "https://registry.npmjs.org"
2626
},
2727
"keywords": [],
2828
"author": "devrev",

meerkat-dbm/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devrev/meerkat-dbm",
3-
"version": "0.1.21",
3+
"version": "0.1.22",
44
"dependencies": {
55
"tslib": "^2.3.0",
66
"@devrev/duckdb-wasm": "1.14.3",
@@ -15,7 +15,7 @@
1515
"url": "git+https://github.com/devrev/meerkat.git"
1616
},
1717
"publishConfig": {
18-
"registry": "https://npm.pkg.github.com"
18+
"registry": "https://registry.npmjs.org"
1919
},
2020
"type": "commonjs",
2121
"main": "./src/index.js",

meerkat-node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"url": "git+https://github.com/devrev/meerkat.git"
2525
},
2626
"publishConfig": {
27-
"registry": "https://npm.pkg.github.com"
27+
"registry": "https://registry.npmjs.org"
2828
},
2929
"keywords": [],
3030
"author": "devrev",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
"url": "git+https://github.com/devrev/meerkat.git"
9696
},
9797
"publishConfig": {
98-
"registry": "https://npm.pkg.github.com"
98+
"registry": "https://registry.npmjs.org"
9999
},
100100
"keywords": [],
101101
"author": "devrev",

0 commit comments

Comments
 (0)