From 331b09c796fb6b8ac14325a3fecc5128b19f1309 Mon Sep 17 00:00:00 2001 From: Alexandru Dima Date: Fri, 16 Sep 2016 20:00:19 +0200 Subject: [PATCH] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 5e2e825b..02db9d49 100644 --- a/README.md +++ b/README.md @@ -54,22 +54,22 @@ This npm module is bundled and distributed in the [monaco-editor](https://www.np * update tsconfig.json with `$> node_modules/.bin/tscg .` * restart compilation with `$> npm run watch` * edit `$/src/monaco.contribution.ts` and register your new language: - ```js +```js registerLanguage({ id: 'sql', extensions: [ '.sql' ], aliases: [ 'SQL' ], module: './sql' }); - ``` +``` * edit `$/test/all.js` and load your new language while testing - ```js +```js 'out/test/sql.test', - ``` +``` * edit `$/gulpfile.js` and ship your new language - ```js +```js bundleOne('src/sql'), - ``` +``` ## Code of Conduct