Update TypeScript dependency to 4.1 RC.

This commit is contained in:
CismonX 2020-11-11 14:31:23 +08:00
parent 60d64d6917
commit c5e45ff429
Signed by: cismonx
GPG Key ID: 3094873E29A482FB
3 changed files with 7 additions and 7 deletions

View File

@ -9,7 +9,7 @@ type-unlambda - [Unlambda](http://www.madore.org/~david/programs/unlambda) inter
Installation:
```sh
npm install --save-dev typescript@next
npm install --save-dev typescript@rc
npm install --save-dev @esolangs/type-unlambda
```

6
package-lock.json generated
View File

@ -5,9 +5,9 @@
"requires": true,
"dependencies": {
"typescript": {
"version": "4.1.0-dev.20201102",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.1.0-dev.20201102.tgz",
"integrity": "sha512-kyL2MUGRx69NgowtHpnabYzNA3N8CR+XW51kL9my6MfSXyrojytW5P4YmaayHGQhWLRmzzdDvHfkf2PQBHgbUw==",
"version": "4.1.1-rc",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.1.1-rc.tgz",
"integrity": "sha512-tgNcFrLIjlaMWEc7bKC0bxLNIt8BIAauY/HLUOQDyTP75HGskETtXOt46x4EKAHRKhWVLMc7yM02puTHa/yhCA==",
"dev": true
}
}

View File

@ -1,6 +1,6 @@
{
"name": "@esolangs/type-unlambda",
"version": "0.1.2",
"version": "0.1.3",
"description": "Unlambda interpreter implemented in TypeScript's type system",
"keywords": [
"Unlambda",
@ -18,9 +18,9 @@
},
"license": "MIT",
"devDependencies": {
"typescript": "^4.1.0-dev.20201102"
"typescript": "^4.1.1-rc"
},
"peerDependencies": {
"typescript": "^4.1.0-dev.20201102"
"typescript": "^4.1.1-rc"
}
}