Skip to content

Commit 40c5134

Browse files
authored
Merge pull request #39 from atom-community/export-utils
2 parents d02dce3 + a43a438 commit 40c5134

File tree

13 files changed

+957
-8953
lines changed

13 files changed

+957
-8953
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ jobs:
2626
- name: Install APM dependencies
2727
run: |
2828
apm install
29-
- name: Atom Package dependencies
30-
run: node ./script/install-package-deps.js
29+
3130
- name: Run tests 👩🏾‍💻
3231
run: npm run test
3332

.github/workflows/bump_deps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
with:
1414
node-version: "14"
1515
- name: Setup PNPM
16-
uses: pnpm/[email protected].0
16+
uses: pnpm/[email protected].2
1717
with:
18-
version: 4.11.1
18+
version: latest
1919
- run: |
2020
pnpm install
2121
pnpm run bump

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,5 @@ package-lock.json
1212
# Build directories
1313
dist
1414
modules
15+
16+
.rollup.cache

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ coverage
77
build
88
dist
99
lib
10+
.rollup.cache

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ npm install --save atom-ide-markdown-service
5151
and use it inside your package like this:
5252

5353
```js
54-
import { render } from "atom-ide-markdown-service/modules/renderer.es"
54+
import { render } from "atom-ide-markdown-service/modules/renderer"
5555
```
5656

5757
in which renderer is a function with this type `render(markdownText: string, grammar: string) => Promise<string>`
@@ -65,7 +65,7 @@ npm install --save atom-ide-markdown-service
6565
and use it inside your package like this:
6666

6767
```js
68-
const { render } = require("atom-ide-markdown-service/modules/renderer")
68+
const { render } = require("atom-ide-markdown-service/dist/renderer")
6969
```
7070

7171
in which render is a function with this type `renderer(markdownText: string, grammar: string) => Promise<string>`

jsconfig.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)