Skip to content

Commit

Permalink
add dependabot
Browse files Browse the repository at this point in the history
  • Loading branch information
amir-arad committed Mar 10, 2021
1 parent 1f5389a commit 62f6a86
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 4 deletions.
27 changes: 27 additions & 0 deletions .github/dependabot.yml
@@ -0,0 +1,27 @@
# see https://docs.github.com/en/github/administering-a-repository/customizing-dependency-updates
version: 2
updates:
- package-ecosystem: npm
directory: '/'
schedule:
interval: daily
open-pull-requests-limit: 10
versioning-strategy: increase
- package-ecosystem: npm
directory: '/modules/server/'
schedule:
interval: daily
open-pull-requests-limit: 10
versioning-strategy: increase
- package-ecosystem: npm
directory: '/modules/browser/'
schedule:
interval: daily
open-pull-requests-limit: 10
versioning-strategy: increase
- package-ecosystem: npm
directory: '/modules/model/'
schedule:
interval: daily
open-pull-requests-limit: 10
versioning-strategy: increase
2 changes: 1 addition & 1 deletion modules/browser/src/3d/objects.ts
@@ -1,4 +1,4 @@
import { SpaceObject, State, degToRad } from '@starwards/model/src';
import { SpaceObject, State, degToRad } from '@starwards/model';

import { AbstractMesh } from '@babylonjs/core';
import EventEmitter from 'eventemitter3';
Expand Down
2 changes: 1 addition & 1 deletion modules/browser/src/driver/admin.ts
@@ -1,4 +1,4 @@
import { GameRoom, adminProperties, cmdSender } from '@starwards/model/src';
import { GameRoom, adminProperties, cmdSender } from '@starwards/model';

export function AdminDriver(adminRoom: GameRoom<'admin'>) {
const shouldGameBeRunning = cmdSender(adminRoom, adminProperties.shouldGameBeRunning);
Expand Down
2 changes: 1 addition & 1 deletion modules/browser/src/driver/space.ts
@@ -1,4 +1,4 @@
import { GameRoom, cmdSender, spaceProperties } from '@starwards/model/src';
import { GameRoom, cmdSender, spaceProperties } from '@starwards/model';

import { SelectionContainer } from '../radar/selection-container';

Expand Down
2 changes: 1 addition & 1 deletion modules/browser/src/input/input-manager.ts
@@ -1,7 +1,7 @@
import '@maulingmonkey/gamepad';

import { GamepadAxisConfig, GamepadButtonConfig, KeysStepsConfig, RangeConfig } from './input-config';
import { capToRange, isInRange } from '@starwards/model/src';
import { capToRange, isInRange } from '@starwards/model';

import hotkeys from 'hotkeys-js';

Expand Down

0 comments on commit 62f6a86

Please sign in to comment.