Skip to content

Commit

Permalink
Fix import pointing to the wrong place
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrl committed Mar 27, 2020
1 parent 4c93cde commit 2559d7c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
9 changes: 3 additions & 6 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,17 @@
# Changlog
This is the master changelog for [`applause-cli`](https://npmjs.org/packages/applause-cli).
This is the master changelog for [`terrain50`](https://npmjs.org/packages/terrain50).

Release template text:

Install or update from npm:

```bash
npm install --save applause-cli
npm install --save terrain50
```


## v1.2
- Fix missing `import` in `Subcommand.mjs`

## v1.1
- Fix missing `export` in `Argument.mjs`
- Fix `import` pointing to the wrong place


## v1.0
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "terrain50",
"version": "1.0.0",
"version": "1.1.0",
"description": "Library for parsing Ordnance Survey Digital Elevation Model files",
"main": "src/index.mjs",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/index.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use strict";

import Terrain50 from './Terrain50class.mjs';
import Terrain50 from './Terrain50.mjs';
import terrain50_blank from './Terrain50Blank.mjs';
import terrain50_parse from './Terrain50Parse.mjs';
import terrain50_merge from './Terrain50Merge.mjs';
Expand Down

0 comments on commit 2559d7c

Please sign in to comment.