Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: main #61

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
16
12 changes: 12 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]

[dev-packages]

[requires]
python_version = "2.7"
python_full_version = "2.7.18"
21 changes: 21 additions & 0 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions dev-shell.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/usr/bin/env bash
set -exo pipefail
fnm use
npm i -g pnpm
pnpm install
export PIPENV_VENV_IN_PROJECT=1
pipenv install --python=2
pipenv shell
12 changes: 9 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
{
"name": "screeps-server-mockup",
"name": "cdaringe-screeps-server-mockup",
"license": "MIT",
"repository": "https://github.com/screepers/screeps-server-mockup",
"version": "1.5.1",
"version": "1.5.1-rc.01",
"main": "dist/src/main.js",
"types": "dist/src/main.d.ts",
"scripts": {
"build": "tsc",
"coverage": "yarn run build && nyc mocha dist/test --ui tdd --exit",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\" \"utils/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" \"test/**/*.ts\" \"utils/**/*.ts\" --fix",
"prepare": "yarn run build",
"prepublishOnly": "yarn test && yarn run lint",
"test": "yarn run build && mocha dist/test --ui tdd --exit"
Expand Down Expand Up @@ -43,6 +44,11 @@
"mocha": "^7.0.0",
"npm-cli-login": "^0.1.1",
"nyc": "^15.0.0",
"typescript": "^3.8.2"
"typescript": "^4"
},
"pnpm": {
"overrides": {
"isolated-vm": "^4"
}
}
}
Loading