🚚 Rename getSolidpkgZip to GetReleaseZip, change npm script

This commit is contained in:
C-3PO 2018-10-21 03:32:48 +02:00
parent 243ac2753f
commit f56f0c85e1
Signed by: c3po
GPG key ID: 62993C4BB4D86F24
3 changed files with 3 additions and 3 deletions

View file

@ -9,7 +9,7 @@
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
"scripts": { "scripts": {
"preinstall": "npm start", "postinstall": "npm start",
"start": "rm -rf dist && tsc", "start": "rm -rf dist && tsc",
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },

View file

@ -7,8 +7,8 @@ import { ISsnFileEntry } from './interfaces/ISsnFileEntry';
import findReleasePath from './ssn/findReleasePath'; import findReleasePath from './ssn/findReleasePath';
import getManifest from './ssn/getManifest'; import getManifest from './ssn/getManifest';
import getPatch from './ssn/getPatch'; import getPatch from './ssn/getPatch';
import getReleaseZip from './ssn/getReleaseZip';
import getSolidpkg from './ssn/getSolidpkg'; import getSolidpkg from './ssn/getSolidpkg';
import getSolidpkgZip from './ssn/getSolidpkgZip';
import verifyProductName from './ssn/verify/verifyProductName'; import verifyProductName from './ssn/verify/verifyProductName';
export { IManifest, ISolidSimple, ISsnFileEntry, Product, findReleasePath, getManifest, getPatch, getSolidpkg, getSolidpkgZip, verifyProductName }; export { IManifest, ISolidSimple, ISsnFileEntry, Product, findReleasePath, getManifest, getPatch, getSolidpkg, getReleaseZip, verifyProductName };