From 65b9b0cb8099e28dccca767bc2ceb09da3af8e3f Mon Sep 17 00:00:00 2001 From: Maxime Quandalle Date: Mon, 24 Feb 2020 10:29:13 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Utilise=20le=20script=20"prepare?= =?UTF-8?q?"=20plut=C3=B4t=20que=20"postinstall"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #892 --- package.json | 4 ++-- source/scripts/{postinstall.js => prepare.js} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename source/scripts/{postinstall.js => prepare.js} (100%) diff --git a/package.json b/package.json index 543407889..c04c7c9cf 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "mon-entreprise", "license": "MIT", - "version": "1.2.6", + "version": "1.2.8", "description": "Library to compute the french social security contributions. Also a website that explains the calculations, and a generic engine to build cool forms that asks the question needed to compute an objective.", "main": "./dist/engine.js", "files": [ @@ -63,7 +63,7 @@ "whatwg-fetch": "^3.0.0" }, "scripts": { - "postinstall": "node source/scripts/postinstall.js", + "prepare": "node source/scripts/prepare.js", "compile": "yarn run webpack --config source/webpack.prod.js && yarn run webpack --config source/webpack.prod.legacyBrowser.js", "stats": "webpack --config source/webpack.prod.js --profile --json > stats.json", "eslint-check": "eslint --print-config .eslintrc | eslint-config-prettier-check", diff --git a/source/scripts/postinstall.js b/source/scripts/prepare.js similarity index 100% rename from source/scripts/postinstall.js rename to source/scripts/prepare.js