Skip to content

Commit 4f420ff

Browse files
committed
feat: preps for FOSS
1 parent b4f0c04 commit 4f420ff

11 files changed

+2967
-1972
lines changed

.editorconfig

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# please upstream changes!
2-
# https://gitlab.servalldatasystems.com/meat-n-potatoes/dotfiles
3-
41
root = true
52

63
[*]

.gitignore

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# please upstream changes!
2-
# https://gitlab.servalldatasystems.com/meat-n-potatoes/dotfiles
3-
41
node_modules/
52

63
# config

.gitlab-ci.yml

+14-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
include:
2-
- project: 'meat-n-potatoes/ci'
3-
file: 'all.yml'
4-
ref: v2
2+
- project: 'meat-n-potatoes/ci'
3+
file: 'all.yml'
4+
ref: v3
55

66
stages:
77
- lint
@@ -24,3 +24,14 @@ test:
2424
publish:
2525
extends: .node-publish-tag
2626
stage: publish
27+
28+
publish-public:
29+
extends: .node-publish-tag-public
30+
stage: publish
31+
32+
sync-github-repo:
33+
extends: .sync-github-repo
34+
stage: publish
35+
only: [master]
36+
variables:
37+
GITHUB_SSH_URL: [email protected]:launchcodedev/fetch.git

.npmrc

-6
This file was deleted.

CONTRIBUTING.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
## Contributing to this package
2+
Thank you for your interest in contributing!
3+
4+
Below is a 'quick start' guide to developing. If there are details
5+
that we are missing here, feel free to file an issue or correct mistakes!
6+
7+
### Building
8+
We use `yarn`, and you should too if you plan to add or remove any npm packages.
9+
10+
```
11+
# installs 3rd party dependencies
12+
yarn install
13+
14+
# runs typescript and outputs in ./dist
15+
yarn build
16+
17+
# runs the unit tests
18+
yarn test
19+
20+
# runs our linter
21+
yarn lint
22+
```
23+
24+
The `build` and `test` command have a `--watch` option that will intelligently re-run when files change.
25+
26+
### Pull Request
27+
We will happily accept pull requests of any kind. Be sure that the tests
28+
pass and that the linter is happy before filling a PR, otherwise we'll
29+
need to tell you to fix those issues.
30+
31+
If you are adding anything new or changing behavior, please add applicable tests.

0 commit comments

Comments
 (0)