Skip to content
This repository was archived by the owner on May 17, 2021. It is now read-only.

build: COMPASS-3933: Fixing up deps #38

Merged
merged 9 commits into from
Jan 28, 2020
Merged
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
24 changes: 10 additions & 14 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,20 @@
sudo: required
dist: trusty
sudo: false
dist: bionic
language: node_js
node_js:
- 10.2.1
- 12.4.0
env:
matrix:
- MONGODB_VERSION=stable MONGODB_TOPOLOGY=standalone
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- sourceline: 'ppa:ubuntu-toolchain-r/test'
packages:
- libkrb5-dev
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
before_install:
- echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" >> .npmrc
script: npm run ci
cache:
directories:
- $HOME/.electron
- node_modules
- libsecret-1-dev
install:
- npm ci
script:
- npm run ci
cache: npm
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

Compass Schema Validation supports complex validation rules based on JSON Schema, along with the already supported MQL-based simple validation. Compared with previously available document validation, JSON Schema is much more flexible when creating complex validation rules.

===

## Features

- Showing, creating, editing and deleting schema validation rules.
Expand All @@ -23,6 +21,3 @@ Apache 2.0

[travis_img]: https://travis-ci.com/10gen/compass-schema-validation.svg?token=YR7x4T8Eq47MJVPbWMye&branch=master
[travis_url]: https://travis-ci.org/10gen/compass-schema-validation
[enzyme]: http://airbnb.io/enzyme/
[enzyme-chai]: https://github.com/producthunt/chai-enzyme
[jsdom]: https://github.com/tmpvar/jsdom
7 changes: 6 additions & 1 deletion electron/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ if ( process.defaultApp || /[\\/]electron-prebuilt[\\/]/.test(process.execPath)
function createWindow() {
// Create the browser window.
mainWindow = new BrowserWindow({
width: 1024, height: 768, show: false
width: 1024,
height: 768,
show: false,
webPreferences: {
nodeIntegration: true
}
});

// and load the index.html of the app.
Expand Down
28 changes: 0 additions & 28 deletions karma.conf.js

This file was deleted.

Loading