mirror of
https://github.com/fullstack-cash/explorer.fullstack.cash.git
synced 2026-09-22 01:02:05 -07:00
Merge pull request #1 from Permissionless-Software-Foundation/ct-unstable
Adding Semantic Release
This commit is contained in:
+33
@@ -0,0 +1,33 @@
|
||||
# This is a node.js v8+ JavaScript project
|
||||
language: node_js
|
||||
node_js:
|
||||
- "10"
|
||||
|
||||
# Build on Ubuntu Trusty (14.04)
|
||||
# https://docs.travis-ci.com/user/reference/trusty/#javascript-and-nodejs-images
|
||||
dist: xenial
|
||||
sudo: required
|
||||
|
||||
# Use Docker
|
||||
services:
|
||||
- docker
|
||||
|
||||
before_install:
|
||||
#- npm install -g mocha
|
||||
|
||||
# https://github.com/greenkeeperio/greenkeeper-lockfile/issues/156
|
||||
#install: case $TRAVIS_BRANCH in greenkeeper*) npm i;; *) npm ci;; esac;
|
||||
install:
|
||||
- npm install
|
||||
|
||||
script: "npm run test"
|
||||
|
||||
# Send coverage data to Coveralls
|
||||
after_success:
|
||||
- npm run coverage
|
||||
|
||||
deploy:
|
||||
provider: script
|
||||
skip_cleanup: true
|
||||
script:
|
||||
- npx semantic-release
|
||||
Generated
+22691
-9
File diff suppressed because it is too large
Load Diff
+17
-28
@@ -1,8 +1,7 @@
|
||||
{
|
||||
"name": "bch-wallet-starter",
|
||||
"private": true,
|
||||
"description": "A simplified bare-bones starter for Gatsby",
|
||||
"version": "0.1.0",
|
||||
"description": "A BCH web wallet starter for Gatsby.",
|
||||
"version": "1.0.0",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"build": "gatsby build",
|
||||
@@ -11,38 +10,28 @@
|
||||
"start": "npm run develop",
|
||||
"serve": "gatsby serve",
|
||||
"clean": "gatsby clean",
|
||||
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
|
||||
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
|
||||
},
|
||||
"dependencies": {
|
||||
"adminlte-2-react": "^0.1.27",
|
||||
"gatsby-ipfs-web-wallet": "^0.1.0",
|
||||
"gatsby": "^2.23.7",
|
||||
"gatsby-image": "^2.4.12",
|
||||
"gatsby-plugin-ipfs": "^2.0.2",
|
||||
"gatsby-plugin-manifest": "^2.4.9",
|
||||
"gatsby-plugin-offline": "^3.2.7",
|
||||
"gatsby-plugin-react-helmet": "^3.3.2",
|
||||
"gatsby-plugin-sharp": "^2.6.17",
|
||||
"gatsby-source-filesystem": "^2.3.8",
|
||||
"gatsby-transformer-sharp": "2.5.3",
|
||||
"graphql": "14.6.0",
|
||||
"minimal-slp-wallet": "1.3.4",
|
||||
"react": "^16.12.0",
|
||||
"react-dom": "^16.12.0",
|
||||
"react-helmet": "^6.0.0",
|
||||
"react-jdenticon": "0.0.8",
|
||||
"react-qr-reader": "^2.2.1",
|
||||
"react-redux": "^7.2.0",
|
||||
"redux": "^4.0.5"
|
||||
},
|
||||
"devDependencies": {
|
||||
"prettier": "2.0.5"
|
||||
"gatsby-ipfs-web-wallet": "^1.1.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/gatsbyjs/gatsby-starter-hello-world"
|
||||
"url": "https://github.com/Permissionless-Software-Foundation/bch-wallet-starter"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/gatsbyjs/gatsby/issues"
|
||||
"url": "https://github.com/Permissionless-Software-Foundation/bch-wallet-starter/issues"
|
||||
},
|
||||
"devDependencies": {
|
||||
"semantic-release": "^17.1.1"
|
||||
},
|
||||
"release": {
|
||||
"publish": [
|
||||
{
|
||||
"path": "@semantic-release/npm",
|
||||
"npmPublish": false
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user