From abca1b0a348e1cee0d77ea9426afed545e154e0c Mon Sep 17 00:00:00 2001 From: Tim Golen Date: Tue, 25 Jul 2023 13:18:03 -0600 Subject: [PATCH 1/2] Add a build script and update the readme --- README.md | 10 +++++++++- package.json | 5 +++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ef90523..5935f2e 100644 --- a/README.md +++ b/README.md @@ -1 +1,9 @@ -# react-native-x-maps +# `react-native-x-maps` + +# Deploying +This repo automatically publishes to NPM when PRs are merged to main. + +After a PR is merged, go to /actions and once the publish workflow is complete, grab the new version number to update other repos with. + +# Contributing +Right now, contributions to this library are done under https://github.com/Expensify/App. Please refer to that repo and all it's guidelines for contributing. diff --git a/package.json b/package.json index 778124a..4980928 100644 --- a/package.json +++ b/package.json @@ -4,10 +4,11 @@ "description": "A cross platform compatible map component for React-Native", "main": "index.js", "scripts": { - "test": "echo \"Error: no test specified\" && exit 1", + "build": "echo \"Warning: no build process has been specified yet\"", "lint": "eslint index.js", "prettier": "prettier --write .", - "prettier-watch": "onchange \"**/*.js\" -- prettier --write --ignore-unknown {{changed}}" + "prettier-watch": "onchange \"**/*.js\" -- prettier --write --ignore-unknown {{changed}}", + "test": "echo \"Error: no test specified\" && exit 1" }, "repository": { "type": "git", From c23b68791e667cdef394e49b71aa24b2ebab75b0 Mon Sep 17 00:00:00 2001 From: Tim Golen Date: Tue, 25 Jul 2023 15:46:26 -0600 Subject: [PATCH 2/2] Update README.md --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 5935f2e..bf24c6d 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,5 @@ # Deploying This repo automatically publishes to NPM when PRs are merged to main. -After a PR is merged, go to /actions and once the publish workflow is complete, grab the new version number to update other repos with. - # Contributing Right now, contributions to this library are done under https://github.com/Expensify/App. Please refer to that repo and all it's guidelines for contributing.