Compare commits
No commits in common. "fdcda5ff50b218aec0da964897252a3f26000885" and "02d846d3be93e038947dca7751bb71d8a292b0a0" have entirely different histories.
fdcda5ff50
...
02d846d3be
38
.releaserc
38
.releaserc
|
@ -1,38 +0,0 @@
|
||||||
{
|
|
||||||
"plugins": [
|
|
||||||
"@semantic-release/commit-analyzer",
|
|
||||||
"@semantic-release/release-notes-generator",
|
|
||||||
"@semantic-release/changelog",
|
|
||||||
[
|
|
||||||
"@semantic-release/exec",
|
|
||||||
{
|
|
||||||
"publishCmd": "git clone https://git.lumeweb.com/LumeWeb/circle-ci-publish.git ci; ./ci/publish.sh \"${nextRelease.version}\""
|
|
||||||
}
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"@semantic-release/npm",
|
|
||||||
{
|
|
||||||
"npmPublish": false
|
|
||||||
}
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"@semantic-release/git",
|
|
||||||
{
|
|
||||||
"assets": [
|
|
||||||
"package.json"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"branches": [
|
|
||||||
"master",
|
|
||||||
{
|
|
||||||
name: "develop",
|
|
||||||
prerelease: true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "develop-*",
|
|
||||||
prerelease: true
|
|
||||||
},
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
nodeLinker: node-modules
|
||||||
|
|
||||||
|
plugins:
|
||||||
|
- path: .yarn/plugins/@yarnpkg/plugin-typescript.cjs
|
||||||
|
spec: "@yarnpkg/plugin-typescript"
|
12
package.json
12
package.json
|
@ -1,20 +1,18 @@
|
||||||
{
|
{
|
||||||
"name": "@lumeweb/relay-plugin-discovery-irc",
|
"name": "@lumeweb/relay-plugin-discovery-irc",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "node build.js",
|
"build": "node build.js"
|
||||||
"semantic-release": "semantic-release"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@lumeweb/interface-relay": "git+https://git.lumeweb.com/LumeWeb/interface-relay.git",
|
"@lumeweb/peer-discovery": "https://git.lumeweb.com/LumeWeb/peer-discovery.git",
|
||||||
"@lumeweb/peer-discovery": "git+https://git.lumeweb.com/LumeWeb/peer-discovery.git",
|
"@lumeweb/relay-types": "https://git.lumeweb.com/LumeWeb/relay-types.git",
|
||||||
"@types/b4a": "^1.6.0",
|
"@types/b4a": "^1.6.0",
|
||||||
"@types/prettier": "^2",
|
"@types/prettier": "^2",
|
||||||
"esbuild": "^0.16.10",
|
"esbuild": "^0.16.10",
|
||||||
"prettier": "^2.8.1",
|
"prettier": "^2.8.1",
|
||||||
"rollup": "^3.7.5",
|
"rollup": "^3.7.5"
|
||||||
"semantic-release": "^21.0.1"
|
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@ctrl/irc": "^2.1.0",
|
"@ctrl/irc": "^2.1.0",
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"discoveryirc": {
|
"discoveryirc": {
|
||||||
"networks": [
|
"networks": [
|
||||||
{
|
{
|
||||||
"host": "irc.liberta.casa",
|
"host": "irc.ergo.chat",
|
||||||
"port": 6697,
|
"port": 6697,
|
||||||
"ssl" : true
|
"ssl" : true
|
||||||
}
|
}
|
||||||
|
|
3006
pnpm-lock.yaml
3006
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
|
@ -1,4 +1,4 @@
|
||||||
import type { Plugin, PluginAPI } from "@lumeweb/interface-relay";
|
import type { Plugin, PluginAPI } from "@lumeweb/relay-types";
|
||||||
import type { Peer } from "@lumeweb/peer-discovery";
|
import type { Peer } from "@lumeweb/peer-discovery";
|
||||||
import { IrcClient } from "@ctrl/irc";
|
import { IrcClient } from "@ctrl/irc";
|
||||||
import b4a from "b4a";
|
import b4a from "b4a";
|
||||||
|
|
Loading…
Reference in New Issue