This commit is contained in:
Luca Vandro 2020-12-29 19:58:43 +01:00
parent 9776a520d9
commit 2683a2f9d5
4 changed files with 11 additions and 6 deletions

1
dist/codice-fiscale-var.js vendored Normal file

File diff suppressed because one or more lines are too long

8
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "codice-fiscale-js",
"version": "2.3.5",
"version": "2.3.6",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@ -6347,9 +6347,9 @@
"dev": true
},
"ini": {
"version": "1.3.5",
"resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz",
"integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==",
"version": "1.3.8",
"resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
"integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
"dev": true
},
"inquirer": {

View File

@ -24,11 +24,12 @@
"webpack-cli": "^3.3.12"
},
"scripts": {
"build": "webpack",
"build": "webpack && rename",
"clean": "rm ./example/codice.fiscale.var.js",
"test": "jest",
"fix": "standard --fix",
"standard": "standard"
"standard": "standard",
"rename": "node utils.js"
},
"author": "Luca Vandro <lucavandro@gmail.com>",
"contributors": [

3
utils.js Normal file
View File

@ -0,0 +1,3 @@
var fs = require('fs');
fs.createReadStream('./dist/codice.fiscale.var.js')
.pipe(fs.createWriteStream('./dist/codice-fiscale-var.js'))