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

Switch to npm workspaces #340

Merged
merged 9 commits into from
Apr 8, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
20 changes: 20 additions & 0 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build

on: push

jobs:
build:
name: monaco-languageclient
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Build
shell: bash
run: |
npm i && npm run build
9 changes: 6 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
.DS_Store
lib
node_modules
*.log
dist

node_modules
lib
dist

*.tsbuildinfo
4 changes: 2 additions & 2 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ports:
- port: 3000
tasks:
- init: yarn
command: scripts/auth.sh && yarn start
- init: npm
command: scripts/auth.sh && npm run dev
27 changes: 0 additions & 27 deletions .travis.yml

This file was deleted.

9 changes: 0 additions & 9 deletions client/.npmignore

This file was deleted.

39 changes: 0 additions & 39 deletions client/package.json

This file was deleted.

23 changes: 0 additions & 23 deletions client/tsconfig.json

This file was deleted.

29 changes: 0 additions & 29 deletions example/package.json

This file was deleted.

12 changes: 0 additions & 12 deletions example/tsconfig.json

This file was deleted.

23 changes: 0 additions & 23 deletions examples/browser/package.json

This file was deleted.

11 changes: 0 additions & 11 deletions examples/browser/tsconfig.json

This file was deleted.

13 changes: 0 additions & 13 deletions lerna.json

This file was deleted.

Loading