prepare for publishing on npm
This commit is contained in:
parent
c564c525f4
commit
49fe78dc06
4 changed files with 4298 additions and 1582 deletions
9
.travis
Normal file
9
.travis
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
# can be used for travis build config et al config
|
||||||
|
|
||||||
|
#shadow-cljs do-something test
|
||||||
|
shadow-cljs release app
|
||||||
|
mkdir target/npm-build
|
||||||
|
cp mastodon-bot.js target/npm-build/
|
||||||
|
cp README.md target/npm-build/
|
||||||
|
tar -c -C target/npm-build -f target/npm-build.tar .
|
||||||
|
npm publish ./target/npm-build.tar --access public --tag dev0
|
5831
mastodon-bot.js
5831
mastodon-bot.js
File diff suppressed because it is too large
Load diff
29
package.json
29
package.json
|
@ -1,10 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "mastodon-bot",
|
"name": "mastodon-bot",
|
||||||
"version": "0.0.2",
|
"description": "Bot to publish twitter, tumblr or rss posts to an mastodon account.",
|
||||||
|
"author": "Dmitri Sotnikov",
|
||||||
|
"version": "0.1.0-dev-0",
|
||||||
|
"homepage": "https://github.com/yogthos/mastodon-bot",
|
||||||
"repository": "https://github.com/yogthos/mastodon-bot",
|
"repository": "https://github.com/yogthos/mastodon-bot",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"lumo-cljs": "^1.10.1",
|
|
||||||
"mastodon-api": "1.3.0",
|
"mastodon-api": "1.3.0",
|
||||||
"rss-parser": "3.7.1",
|
"rss-parser": "3.7.1",
|
||||||
"tumblr": "0.4.1",
|
"tumblr": "0.4.1",
|
||||||
|
@ -15,17 +17,20 @@
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"shadow-cljs": "^2.8.37"
|
"shadow-cljs": "^2.8.37"
|
||||||
},
|
},
|
||||||
"directories": {
|
"main": "mastodon-bot.js",
|
||||||
"lib": "."
|
|
||||||
},
|
|
||||||
"files": [
|
|
||||||
"src/mastodon_bot/*"
|
|
||||||
],
|
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "./src/main/mastodon_bot/core.cljs",
|
"start": "node mastodon-bot.js"
|
||||||
"test": "MASTODON_BOT_CONFIG=test.edn ./src/test/mastodon_bot/core_test.cljs"
|
|
||||||
},
|
},
|
||||||
"bin": {
|
"bin": {
|
||||||
"mastodon-bot": "src/main/mastodon_bot/core.cljs"
|
"mastodon-bot": "mastodon-bot.js"
|
||||||
}
|
},
|
||||||
|
"keywords": [
|
||||||
|
"cljs",
|
||||||
|
"mastodon",
|
||||||
|
"twitter",
|
||||||
|
"rss",
|
||||||
|
"tumblr",
|
||||||
|
"bridge",
|
||||||
|
"bot"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,15 +2,12 @@
|
||||||
"src/test"]
|
"src/test"]
|
||||||
:dependencies [[orchestra "2019.02.06-1"]
|
:dependencies [[orchestra "2019.02.06-1"]
|
||||||
[expound "0.8.4"]]
|
[expound "0.8.4"]]
|
||||||
:builds {:dev {:target :node-library
|
:builds {:test {:target :node-test
|
||||||
:output-to "target/node-lib.js"
|
|
||||||
:exports {:infra mastodon-bot.core/main}
|
|
||||||
:repl-pprint true}
|
|
||||||
:test {:target :node-test
|
|
||||||
:output-to "target/node-tests.js"
|
:output-to "target/node-tests.js"
|
||||||
:ns-regexp "test$"
|
:ns-regexp "test$"
|
||||||
:autorun true}
|
:autorun true
|
||||||
|
:repl-pprint true}
|
||||||
:app {:target :node-script
|
:app {:target :node-script
|
||||||
:output-to "target/mastodon-bot.js"
|
:output-to "mastodon-bot.js"
|
||||||
:main mastodon-bot.core/main
|
:main mastodon-bot.core/main
|
||||||
:compiler-options {:optimizations :simple}}}}
|
:compiler-options {:optimizations :simple}}}}
|
||||||
|
|
Reference in a new issue