Rename atom packages to include pivotal prefix

This commit is contained in:
BoykoAlex
2017-08-02 14:51:41 -04:00
parent 775d715c35
commit 7166e3d15c
3 changed files with 13 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "atom-commons",
"name": "pivotal-atom-languageclient-commons",
"version": "0.1.0",
"description": "Atom Commons for STS4",
"description": "Atom language client commons for STS4 language servers",
"repository": "https://github.com/spring-projects/sts4",
"license": "MIT",
"engines": {
@@ -9,7 +9,7 @@
},
"main": "./dist/index",
"dependencies": {
"atom-languageclient": "https://github.com/atom/atom-languageclient#master",
"atom-languageclient": "git://github.com/BoykoAlex/atom-languageclient#grammar-override",
"decompress": "^4.2.0",
"portfinder": "^1.0.13",
"remote-file-size": "^3.0.3",

View File

@@ -1,5 +1,5 @@
const path = require('path');
const { JarLanguageClient } = require('atom-commons');
const { JarLanguageClient } = require('pivotal-atom-languageclient-commons');
class ManifestYamlLanguageClient extends JarLanguageClient {

View File

@@ -1,18 +1,23 @@
{
"name": "cf-manifest-yaml",
"name": "pivotal-atom-cf-manifest-yaml",
"main": "./lib/main",
"version": "0.1.0",
"version": "0.0.1",
"description": "Cloud Foundry Deployment Manifest YAML support for Atom",
"repository": "https://github.com/spring-projects/sts4",
"repository": "https://github.com/spring-projects/sts4/atom-extensions/atom-manifest-yaml",
"license": "MIT",
"engines": {
"atom": ">=1.17.0"
},
"files": [
"grammars/",
"settings/",
"lib/"
],
"dependencies": {
"decompress": "^4.2.0",
"portfinder": "^1.0.13",
"remote-file-size": "^3.0.3",
"atom-commons": "file:../atom-commons"
"pivotal-atom-languageclient-commons": "file:../atom-commons"
},
"devDependencies": {
"coffeelint": "^1.10.1"