Skip to content

Commit e2fb14e

Browse files
committed
Fix bad reference to atg-storage in index.js
Also update lint script to check index.js
1 parent cb3fc95 commit e2fb14e

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#v0.5.1
2+
## Fixed
3+
* Bad reference to atg-storage
4+
15
# v0.5
26
## Added
37
* CLI: Support YAML for parameter files

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
const dataStores = require('atg-storage');
3+
const dataStores = require('@f5devcentral/atg-storage');
44

55
const FsSchemaProvider = require('./lib/schema_provider').FsSchemaProvider;
66
const { FsTemplateProvider, DataStoreTemplateProvider } = require('./lib/template_provider');

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"description": "The core module for F5 Application Services Templates",
88
"scripts": {
99
"test": "mocha --recursive \"./test/*.js\"",
10-
"lint": "eslint lib test cli.js --ignore-pattern jsoneditor.js",
10+
"lint": "eslint lib test index.js cli.js --ignore-pattern jsoneditor.js",
1111
"buildbin": "./scripts/build-fastbin.sh",
1212
"coverage": "nyc npm test"
1313
},

0 commit comments

Comments
 (0)