Skip to content

Commit

Permalink
Merge pull request #59 from atom-community/ts
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya authored Feb 6, 2021
2 parents b3b336c + d5294d2 commit 4d30084
Show file tree
Hide file tree
Showing 7 changed files with 1,321 additions and 188 deletions.
74 changes: 0 additions & 74 deletions lib/main.js

This file was deleted.

18 changes: 14 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "atom-ide-signature-help",
"main": "./lib/main.js",
"main": "./dist/main.js",
"version": "0.14.1",
"description": "A replacement of the SignatureHelp functionality from the original Atom-IDE / Nuclide package developed by Facebook.",
"keywords": [
Expand All @@ -15,7 +15,11 @@
},
"scripts": {
"format": "prettier --write .",
"bump": "ncu -u"
"clean": "shx rm -rf dist",
"dev": "npm run clean && cross-env NODE_ENV=development cross-env BABEL_KEEP_MODULES=true rollup -c -w",
"build": "npm run clean && cross-env NODE_ENV=production cross-env BABEL_KEEP_MODULES=true rollup -c",
"bump": "ncu -u",
"prepare": "npm run build"
},
"package-deps": [
"atom-ide-markdown-service",
Expand All @@ -28,9 +32,15 @@
"devDependencies": {
"@types/atom": "^1.40.7",
"@types/node": "^14.14.22",
"prettier": "^2.2.1",
"build-commit": "^0.1.4",
"cross-env": "^7.0.3",
"npm-check-updates": "^11.1.1",
"build-commit": "^0.1.4"
"prettier": "^2.2.1",
"rollup": "^2.38.5",
"rollup-plugin-atomic": "^2.0.1",
"shx": "^0.3.3",
"tslib": "^2.1.0",
"typescript": "^4.1.3"
},
"activationHooks": [
"core:loaded-shell-environment"
Expand Down
Loading

0 comments on commit 4d30084

Please sign in to comment.