Remove @xtermjs package scope

Too big of a change for now, I think we should do this when/if we
move to GH package registry (we would have to I think).
This commit is contained in:
Daniel Imms
2019-06-04 11:07:11 -07:00
parent d5fddae788
commit d4be839d8d
35 changed files with 30 additions and 30 deletions
@@ -1,5 +1,5 @@
{
"name": "@xtermjs/addon-attach",
"name": "xterm-addon-attach",
"version": "0.1.0-beta8",
"author": {
"name": "The xterm.js authors",
@@ -9,7 +9,7 @@
"types": "typings/attach.d.ts",
"license": "MIT",
"scripts": {
"prepublishOnly": "../../../node_modules/.bin/tsc -p src"
"prepublishOnly": "../../node_modules/.bin/tsc -p src"
},
"peerDependencies": {
"xterm": "^3.14.0"
@@ -14,6 +14,6 @@
},
"include": [
"./**/*",
"../../../../typings/xterm.d.ts"
"../../../typings/xterm.d.ts"
]
}
@@ -5,7 +5,7 @@
import { Terminal, ILinkMatcherOptions, ITerminalAddon } from 'xterm';
declare module '@xtermjs/addon-attach' {
declare module 'xterm-addon-attach' {
export interface IAttachOptions {
/**
* Whether input should be written to the backend. Defaults to `true`.
@@ -1,5 +1,5 @@
{
"name": "@xtermjs/addon-fit",
"name": "xterm-addon-fit",
"version": "0.1.0-beta7",
"author": {
"name": "The xterm.js authors",
@@ -9,7 +9,7 @@
"types": "typings/fit.d.ts",
"license": "MIT",
"scripts": {
"prepublishOnly": "../../../node_modules/.bin/tsc -p src"
"prepublishOnly": "../../node_modules/.bin/tsc -p src"
},
"peerDependencies": {
"xterm": "^3.14.0"
@@ -14,6 +14,6 @@
},
"include": [
"./**/*",
"../../../../typings/xterm.d.ts"
"../../../typings/xterm.d.ts"
]
}
@@ -5,7 +5,7 @@
import { Terminal, ITerminalAddon } from 'xterm';
declare module '@xtermjs/addon-fit' {
declare module 'xterm-addon-fit' {
/**
* An xterm.js addon that enables resizing the terminal to the dimensions of
* its containing element.
@@ -1,15 +1,15 @@
{
"name": "@xtermjs/addon-search",
"name": "xterm-addon-search",
"version": "0.1.0-beta4",
"author": {
"name": "The xterm.js authors",
"url": "https://xtermjs.org/"
},
"main": "lib/SearchAddon.js",
"types": "typings/search.d.ts",
"types": "typings/xterm-addon-search.d.ts",
"license": "MIT",
"scripts": {
"prepublishOnly": "../../../node_modules/.bin/tsc -p src"
"prepublishOnly": "../../node_modules/.bin/tsc -p src"
},
"peerDependencies": {
"xterm": "^3.14.0"

Some files were not shown because too many files have changed in this diff Show More