Skip to content

Commit a161c0c

Browse files
committed
Fix errror remove unused packages
1 parent bf77489 commit a161c0c

File tree

286 files changed

+410
-19501
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

286 files changed

+410
-19501
lines changed

debug_log.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Starting crash reporter; crash reports will be saved to /home/autocookie/.syntaxvoid/crashdumps
2+
[71636:0317/200139.372166:WARNING:bluez_dbus_manager.cc(248)] Floss manager not present, cannot set Floss enable/disable.

debug_log_v2.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Starting crash reporter; crash reports will be saved to /home/autocookie/.syntaxvoid/crashdumps
2+
[72715:0317/200338.043832:WARNING:bluez_dbus_manager.cc(248)] Floss manager not present, cannot set Floss enable/disable.

package.json

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"@pulsar-edit/scandal": "^4.0.0",
3939
"@pulsar-edit/superstring": "^3.0.4",
4040
"@pulsar-edit/text-buffer": "^14.0.3",
41-
"about": "file:packages/about",
41+
"about": "file:./packages/about",
4242
"archive-view": "file:packages/archive-view",
4343
"async": "3.2.4",
4444
"crab-dark-syntax": "file:packages/crab-dark-syntax",
@@ -181,10 +181,6 @@
181181
"symbol-provider-ctags": "file:./packages/symbol-provider-ctags",
182182
"symbol-provider-tree-sitter": "file:./packages/symbol-provider-tree-sitter",
183183
"symbols-view": "file:./packages/symbols-view",
184-
"syntaxvoid-patch-governor": "file:./packages/syntaxvoid-patch-governor",
185-
"syntaxvoid-project-map": "file:./packages/syntaxvoid-project-map",
186-
"syntaxvoid-risk-overlay": "file:./packages/syntaxvoid-risk-overlay",
187-
"syntaxvoid-terminal": "file:./packages/syntaxvoid-terminal",
188184
"tabs": "file:packages/tabs",
189185
"temp": "0.9.4",
190186
"timecop": "file:./packages/timecop",
@@ -287,18 +283,11 @@
287283
"symbols-view": "file:./packages/symbols-view",
288284
"tabs": "file:./packages/tabs",
289285
"timecop": "file:./packages/timecop",
290-
"syntaxvoid-patch-governor": "file:./packages/syntaxvoid-patch-governor",
291-
"syntaxvoid-project-map": "file:./packages/syntaxvoid-project-map",
292-
"syntaxvoid-risk-overlay": "file:./packages/syntaxvoid-risk-overlay",
293286
"tree-view": "file:./packages/tree-view",
294287
"update-package-dependencies": "file:./packages/update-package-dependencies",
295288
"welcome": "file:./packages/welcome",
296289
"whitespace": "file:./packages/whitespace",
297290
"wrap-guide": "file:./packages/wrap-guide",
298-
"syntaxvoid-terminal": "file:./packages/syntaxvoid-terminal",
299-
"syntaxvoid-ui-kit": "file:./packages/syntaxvoid-ui-kit",
300-
"syntaxvoid-impact": "file:./packages/syntaxvoid-impact",
301-
"syntaxvoid-collab-struct": "file:./packages/syntaxvoid-collab-struct",
302291
"language-c": "file:./packages/language-c",
303292
"language-clojure": "file:./packages/language-clojure",
304293
"language-coffee-script": "file:./packages/language-coffee-script",
@@ -373,7 +362,7 @@
373362
"@electron/notarize": "^1.2.3",
374363
"@electron/rebuild": "^4.0.3",
375364
"@playwright/test": "1.22.2",
376-
"electron": "40.8.0",
365+
"electron": "30.0.9",
377366
"electron-builder": "23.3.1",
378367
"eslint": "^8.33.0",
379368
"eslint-plugin-jsdoc": "^39.7.4",

packages/about/lib/components/about-view.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ module.exports = class AboutView extends EtchComponent {
176176
{ className: 'about-updates-item app-unsupported' },
177177
$.span(
178178
{ className: 'about-updates-label is-strong' },
179-
'Updates have been moved to the package ', $.code({style: {'white-space': 'nowrap'}}, 'crab-updater'), '.',
179+
'Updates have been moved to the package ', $.code({ style: { 'white-space': 'nowrap' } }, 'crab-updater'), '.',
180180
$.br()
181181
),
182182
$.a(

packages/about/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const About = require('./about');
44
let updateManager;
55

66
// The local storage key for the available update version.
7-
const AboutURI = 'atom://about';
7+
const AboutURI = 'syntaxvoid://about';
88

99
module.exports = {
1010
activate() {

packages/about/spec/about-spec.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ describe('About', () => {
99
it('deserializes correctly', () => {
1010
let deserializedAboutView = atom.deserializers.deserialize({
1111
deserializer: 'AboutView',
12-
uri: 'atom://about'
12+
uri: 'syntaxvoid://about'
1313
});
1414

1515
expect(deserializedAboutView).toBeTruthy();
@@ -24,7 +24,7 @@ describe('About', () => {
2424
jasmine.attachToDOM(workspaceElement);
2525

2626
expect(workspaceElement.querySelector('.about')).not.toExist();
27-
await atom.workspace.open('atom://about');
27+
await atom.workspace.open('syntaxvoid://about');
2828

2929
let aboutElement = workspaceElement.querySelector('.about');
3030
expect(aboutElement).toBeVisible();
@@ -33,7 +33,7 @@ describe('About', () => {
3333

3434
describe('when the Pulsar version number is clicked', () => {
3535
it('copies the version number to the clipboard', async () => {
36-
await atom.workspace.open('atom://about');
36+
await atom.workspace.open('syntaxvoid://about');
3737
jasmine.attachToDOM(workspaceElement);
3838

3939
let aboutElement = workspaceElement.querySelector('.about');
@@ -45,7 +45,7 @@ describe('About', () => {
4545

4646
describe('when the show more link is clicked', () => {
4747
it('expands to show additional version numbers', async () => {
48-
await atom.workspace.open('atom://about');
48+
await atom.workspace.open('syntaxvoid://about');
4949
jasmine.attachToDOM(workspaceElement);
5050

5151
let aboutElement = workspaceElement.querySelector('.about');
@@ -58,7 +58,7 @@ describe('About', () => {
5858

5959
describe('when the Electron version number is clicked', () => {
6060
it('copies the version number to the clipboard', async () => {
61-
await atom.workspace.open('atom://about');
61+
await atom.workspace.open('syntaxvoid://about');
6262
jasmine.attachToDOM(workspaceElement);
6363

6464
let aboutElement = workspaceElement.querySelector('.about');
@@ -70,7 +70,7 @@ describe('About', () => {
7070

7171
describe('when the Chrome version number is clicked', () => {
7272
it('copies the version number to the clipboard', async () => {
73-
await atom.workspace.open('atom://about');
73+
await atom.workspace.open('syntaxvoid://about');
7474
jasmine.attachToDOM(workspaceElement);
7575

7676
let aboutElement = workspaceElement.querySelector('.about');
@@ -82,7 +82,7 @@ describe('About', () => {
8282

8383
describe('when the Node version number is clicked', () => {
8484
it('copies the version number to the clipboard', async () => {
85-
await atom.workspace.open('atom://about');
85+
await atom.workspace.open('syntaxvoid://about');
8686
jasmine.attachToDOM(workspaceElement);
8787

8888
let aboutElement = workspaceElement.querySelector('.about');
@@ -95,7 +95,7 @@ describe('About', () => {
9595
describe('check for update appears', () => {
9696
it('when "crab-updater" is enabled', async () => {
9797
atom.packages.activatePackage('crab-updater');
98-
await atom.workspace.open('atom://about');
98+
await atom.workspace.open('syntaxvoid://about');
9999
jasmine.attachToDOM(workspaceElement);
100100

101101
let aboutElement = workspaceElement.querySelector('.about');

packages/deprecation-cop/lib/deprecation-cop-view.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ export default class DeprecationCopView {
529529
}
530530

531531
checkForUpdates() {
532-
atom.workspace.open('atom://config/updates');
532+
atom.workspace.open('syntaxvoid://config/updates');
533533
}
534534

535535
disablePackage(packageName) {

packages/deprecation-cop/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const { Disposable, CompositeDisposable } = require('atom');
22
const DeprecationCopView = require('./deprecation-cop-view');
33
const DeprecationCopStatusBarView = require('./deprecation-cop-status-bar-view');
4-
const ViewURI = 'atom://deprecation-cop';
4+
const ViewURI = 'syntaxvoid://deprecation-cop';
55

66
class DeprecationCopPackage {
77
activate() {

packages/find-and-replace/lib/project/results-pane.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,4 +360,4 @@ class ResultsPaneView {
360360
}
361361
}
362362

363-
module.exports.URI = "atom://find-and-replace/project-results";
363+
module.exports.URI = "syntaxvoid://find-and-replace/project-results";

packages/find-and-replace/spec/item/deferred-editor-item.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,6 @@ class DeferredEditorItem {
6666
}
6767
}
6868

69-
DeferredEditorItem.uri = 'atom://find-and-replace/spec/deferred-editor'
69+
DeferredEditorItem.uri = 'syntaxvoid://find-and-replace/spec/deferred-editor'
7070

7171
module.exports = DeferredEditorItem

0 commit comments

Comments
 (0)