Bump version

This commit is contained in:
Bill 2022-11-12 20:02:03 -05:00
parent dbe2388272
commit 4ca6d71933
3 changed files with 3 additions and 38 deletions

View File

@ -1,7 +1,7 @@
{ {
"name": "@nitrots/nitro-renderer", "name": "@nitrots/nitro-renderer",
"description": "Javascript library for rendering Nitro in the browser using PixiJS", "description": "Javascript library for rendering Nitro in the browser using PixiJS",
"version": "1.4.6", "version": "1.4.7",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },
@ -17,8 +17,7 @@
"type": "module", "type": "module",
"scripts": { "scripts": {
"compile": "tsc --project ./tsconfig.json", "compile": "tsc --project ./tsconfig.json",
"eslint": "eslint ./src --fix", "eslint": "eslint ./src --fix"
"postinstall": "node ./post-install.js"
}, },
"dependencies": { "dependencies": {
"howler": "^2.2.3", "howler": "^2.2.3",

View File

@ -1,34 +0,0 @@
function install()
{
return;
// try
// {
// const params = {};
// params['packageName'] = process.env.npm_package_name;
// params['packageVersion'] = process.env.npm_package_version;
// const data = JSON.stringify(params);
// const request = httpsRequest({
// hostname: 'install.nitrots.co',
// port: 443,
// path: '/collect',
// method: 'POST',
// headers: {
// 'Content-Type': 'application/json',
// 'Content-Length': data.length
// }
// });
// request.write(data);
// request.end();
// }
// catch (e)
// {
// //
// }
}
install();

View File

@ -1,6 +1,6 @@
export class NitroVersion export class NitroVersion
{ {
public static RENDERER_VERSION: string = '1.4.6'; public static RENDERER_VERSION: string = '1.4.7';
public static UI_VERSION: string = ''; public static UI_VERSION: string = '';
public static sayHello(): void public static sayHello(): void