Skip to content
This repository was archived by the owner on Dec 17, 2022. It is now read-only.

Cleanup and rename #1

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
See the [Atom contributing guide](https://github.com/atom/atom/blob/master/CONTRIBUTING.md)
[See how you can contribute](https://github.com/pulsar-edit/.github/blob/main/CONTRIBUTING.md)
40 changes: 0 additions & 40 deletions ISSUE_TEMPLATE.md

This file was deleted.

28 changes: 0 additions & 28 deletions PULL_REQUEST_TEMPLATE.md

This file was deleted.

5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# Package Generator package
[![OS X Build Status](https://travis-ci.org/atom/package-generator.svg?branch=master)](https://travis-ci.org/atom/package-generator)
[![Windows Build Status](https://ci.appveyor.com/api/projects/status/7t1i4hdmljhigp9u/branch/master?svg=true)](https://ci.appveyor.com/project/Atom/package-generator/branch/master) [![Dependency Status](https://david-dm.org/atom/package-generator.svg)](https://david-dm.org/atom/package-generator)


Generates and opens a new sample package, language, or syntax theme in Atom.
Generates and opens a new sample package, language, or syntax theme in Pulsar.
4 changes: 2 additions & 2 deletions menus/package-generator.cson
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
'submenu': [
'label': 'Package Generator'
'submenu': [
{ 'label': 'Generate Atom Package', 'command': 'package-generator:generate-package' }
{ 'label': 'Generate Atom Syntax Theme', 'command': 'package-generator:generate-syntax-theme' }
{ 'label': 'Generate Package', 'command': 'package-generator:generate-package' }
{ 'label': 'Generate Syntax Theme', 'command': 'package-generator:generate-syntax-theme' }
]
]
]
191 changes: 191 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 2 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,15 @@
"temp": "^0.8.1",
"underscore-plus": "^1.0.0"
},
"repository": "https://github.com/atom/package-generator",
"repository": "https://github.com/pulsar-edit/package-generator",
"engines": {
"atom": "*"
},
"devDependencies": {
"standard": "^10.0.3"
},
"configSchema": {
"createInDevMode": {
"default": false,
"type": "boolean",
"description": "When disabled, generated packages are linked into Atom in both normal mode and dev mode. When enabled, generated packages are linked into Atom only in dev mode."
"description": "When disabled, generated packages are linked into Pulsar in both normal mode and dev mode. When enabled, generated packages are linked into Pulsar only in dev mode."
},
"packageSyntax": {
"default": "javascript",
Expand All @@ -38,16 +35,5 @@
],
"description": "The syntax to generate packages with."
}
},
"standard": {
"env": {
"atomtest": true,
"browser": true,
"jasmine": true,
"node": true
},
"globals": [
"atom"
]
}
}