Compare commits
24 Commits
Author | SHA1 | Date |
---|---|---|
semantic-release-bot | 711ffe9a6d | |
Derrick Hammer | 8fa4e0342a | |
Derrick Hammer | dc60951659 | |
semantic-release-bot | 182c2adbb2 | |
Derrick Hammer | 202f5574cf | |
Derrick Hammer | 5cf8fbd381 | |
semantic-release-bot | 28a65c054d | |
Derrick Hammer | 246a933821 | |
Derrick Hammer | 04fe26d376 | |
semantic-release-bot | de6e88a2eb | |
Derrick Hammer | dabe41264b | |
Derrick Hammer | 2a939d1404 | |
Derrick Hammer | 34b9edc067 | |
Derrick Hammer | 27d53f37d0 | |
Derrick Hammer | 8b29cbc0a6 | |
Derrick Hammer | 648b915c30 | |
Derrick Hammer | ebdf566bc0 | |
semantic-release-bot | 97db0d8eec | |
Derrick Hammer | 54baee6e48 | |
semantic-release-bot | 348906b514 | |
Derrick Hammer | 2f1845619a | |
Derrick Hammer | 829ce1f1c3 | |
Derrick Hammer | 7e94be835d | |
Derrick Hammer | 9b04c7c115 |
|
@ -0,0 +1,13 @@
|
|||
name: Build/Publish
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- develop
|
||||
- develop-*
|
||||
|
||||
jobs:
|
||||
main:
|
||||
uses: lumeweb/github-node-deploy-workflow/.github/workflows/main.yml@master
|
||||
secrets: inherit
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"preset": [
|
||||
"@lumeweb/node-library-preset"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,21 @@
|
|||
# [0.1.0-develop.6](https://git.lumeweb.com/LumeWeb/community-portals/compare/v0.1.0-develop.5...v0.1.0-develop.6) (2023-06-29)
|
||||
|
||||
# [0.1.0-develop.5](https://git.lumeweb.com/LumeWeb/community-portals/compare/v0.1.0-develop.4...v0.1.0-develop.5) (2023-06-26)
|
||||
|
||||
# [0.1.0-develop.4](https://git.lumeweb.com/LumeWeb/community-portals/compare/v0.1.0-develop.3...v0.1.0-develop.4) (2023-06-26)
|
||||
|
||||
# [0.1.0-develop.3](https://git.lumeweb.com/LumeWeb/community-portals/compare/v0.1.0-develop.2...v0.1.0-develop.3) (2023-06-26)
|
||||
|
||||
# [0.1.0-develop.2](https://git.lumeweb.com/LumeWeb/community-portals/compare/v0.1.0-develop.1...v0.1.0-develop.2) (2023-06-24)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* add missing type and main ([54baee6](https://git.lumeweb.com/LumeWeb/community-portals/commit/54baee6e489df238f37017069f7c7bd3d52f56da))
|
||||
|
||||
# [0.1.0-develop.1](https://git.lumeweb.com/LumeWeb/community-portals/compare/v0.0.1...v0.1.0-develop.1) (2023-06-24)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* initial version ([9b04c7c](https://git.lumeweb.com/LumeWeb/community-portals/commit/9b04c7c11546a76a82fcc9002584a214f2b71c5c))
|
2
LICENSE
2
LICENSE
|
@ -1,6 +1,6 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) <year> <copyright holders>
|
||||
Copyright (c) 2023 Hammer Technologies LLC
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,31 @@
|
|||
{
|
||||
"name": "@lumeweb/community-portals",
|
||||
"version": "0.1.0-develop.6",
|
||||
"type": "module",
|
||||
"main": "lib/index.js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "gitea@git.lumeweb.com:LumeWeb/community-portals.git"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@lumeweb/libweb": "^0.2.0-develop.17",
|
||||
"@lumeweb/node-library-preset": "git+https://git.lumeweb.com/LumeWeb/node-library-preset.git",
|
||||
"@semantic-release/changelog": "^6.0.3",
|
||||
"@semantic-release/git": "^10.0.1",
|
||||
"presetter": "^4.0.1",
|
||||
"presetter-preset-strict": "^4.0.1",
|
||||
"semantic-release": "^21.0.5"
|
||||
},
|
||||
"readme": "ERROR: No README data found!",
|
||||
"scripts": {
|
||||
"prepare": "presetter bootstrap",
|
||||
"build": "run build",
|
||||
"semantic-release": "semantic-release"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@lumeweb/libweb": "^0.2.0-develop.19"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
import { Portal } from "@lumeweb/libweb";
|
||||
|
||||
const DEFAULT_PORTAL_LIST: Portal[] = [
|
||||
{
|
||||
id: "lumeweb",
|
||||
url: "https://alpha.web3portal.com",
|
||||
name: "web3portal.com",
|
||||
},
|
||||
];
|
||||
|
||||
export default DEFAULT_PORTAL_LIST;
|
Loading…
Reference in New Issue