-
-
Notifications
You must be signed in to change notification settings - Fork 1
Decaffeinate and get ready for PulsarNext #10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
54c7924
4ab75b0
723f303
56fcfc6
abb4bba
5a96a8c
29e9481
34976dd
b011a9f
738c797
ceddf28
c7e6b80
18fb410
60dc5e7
c62430d
275c296
f8702c8
219a14e
d190151
edcf6d4
5cd684c
c0c7cf3
eed7259
12d22ab
de5e365
06f5972
d914622
9a98baa
9285a94
8b8ac8d
adf8f1a
355d916
364538f
12f7a42
8d3e3cd
8f0321e
11be3a7
1be8794
179b14c
a084d89
5a08449
f799ca3
806a181
d9fb8b9
e7a4651
6a87705
bd92b30
dd1702a
64594a1
a7bf41e
927f1ce
4cbc873
6c534fc
e2247d4
587dd18
61d757f
bb2dac8
57e73ee
6c912d5
8cc7dfa
8d95fdd
616d018
e3a8f00
ad87d1c
b3089d4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,8 @@ | ||
| .DS_Store | ||
| .tool-versions | ||
| node_modules | ||
| *.swp | ||
| lib | ||
| npm-debug.log | ||
| .coffee | ||
| api.json | ||
| package-lock.json |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,10 +1,8 @@ | ||
| spec | ||
| script | ||
| src | ||
| *.coffee | ||
| .npmignore | ||
| .DS_Store | ||
| npm-debug.log | ||
| .travis.yml | ||
| .pairs | ||
| .coffee |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,3 @@ | ||
| # Atom TextBuffer Core | ||
| [](https://github.com/atom/text-buffer/actions/workflows/ci.yml) | ||
| # Pulsar TextBuffer Core | ||
|
|
||
| This is the core of the Atom text buffer, separated into its own module so its tests can be run headless. It handles the storage and manipulation of text and associated regions (markers). | ||
| This is the core of the Pulsar's text buffer, separated into its own module so its tests can be run headless. It handles the storage and manipulation of text and associated regions (markers). |
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,49 +1,42 @@ | ||
| { | ||
| "name": "text-buffer", | ||
| "name": "@pulsar-edit/text-buffer", | ||
| "version": "13.18.6", | ||
| "description": "A container for large mutable strings with annotated regions", | ||
| "main": "./lib/text-buffer", | ||
| "main": "./src/text-buffer", | ||
| "scripts": { | ||
| "prepublish": "npm run clean && npm run compile && npm run lint && npm run docs", | ||
| "docs": "node script/generate-docs", | ||
| "prepublish": "npm run clean", | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We very likely could remove all these steps and the Joanna dep from this repo, since we no longer utilize the local |
||
| "clean": "rimraf lib api.json", | ||
| "compile": "coffee --no-header --output lib --compile src && cpy src/*.js lib/", | ||
| "lint": "coffeelint -r src spec && standard src/*.js spec/*.js", | ||
| "test": "node script/test", | ||
| "ci": "npm run compile && npm run lint && npm run test && npm run bench", | ||
| "ci": "npm run test && npm run bench", | ||
| "bench": "node benchmarks/index" | ||
| }, | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "https://github.com/atom/text-buffer.git" | ||
| "url": "https://github.com/pulsar/text-buffer.git" | ||
| }, | ||
| "bugs": { | ||
| "url": "https://github.com/atom/text-buffer/issues" | ||
| "url": "https://github.com/pulsar/text-buffer/issues" | ||
| }, | ||
| "atomTestRunner": "atom-jasmine2-test-runner", | ||
| "license": "MIT", | ||
| "devDependencies": { | ||
| "atom-jasmine2-test-runner": "^1.0.0", | ||
| "coffee-cache": "^0.2.0", | ||
| "coffee-script": "^1.10.0", | ||
| "coffeelint": "1.16.0", | ||
| "cpy-cli": "^1.0.1", | ||
| "dedent": "^0.6.0", | ||
| "donna": "^1.0.16", | ||
| "electron": "^6", | ||
| "electron": "^30", | ||
| "jasmine": "^2.4.1", | ||
| "jasmine-core": "^2.4.1", | ||
| "joanna": "0.0.11", | ||
| "json-diff": "^0.3.1", | ||
| "random-seed": "^0.2.0", | ||
| "regression": "^1.2.1", | ||
| "rimraf": "~2.2.2", | ||
| "standard": "^10.0.3", | ||
| "tello": "^1.0.7", | ||
| "temp": "^0.8.3", | ||
| "yargs": "^6.5.0" | ||
| }, | ||
| "dependencies": { | ||
| "@pulsar-edit/pathwatcher": "^9.0.2", | ||
| "@pulsar-edit/superstring": "^3.0.4", | ||
| "delegato": "^1.0.0", | ||
| "diff": "^2.2.1", | ||
| "emissary": "^1.0.0", | ||
|
|
@@ -52,9 +45,7 @@ | |
| "fs-plus": "^3.0.0", | ||
| "grim": "^2.0.2", | ||
| "mkdirp": "^0.5.1", | ||
| "pathwatcher": "^8.1.0", | ||
| "serializable": "^1.0.3", | ||
| "superstring": "^2.4.4", | ||
| "underscore-plus": "^1.0.0", | ||
| "winattr": "^3.0.0" | ||
| }, | ||
|
|
||
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.