Skip to content
This repository has been archived by the owner on Jan 20, 2025. It is now read-only.

Commit

Permalink
Merge pull request #3 from pulsar-edit/update-finalize-decaf
Browse files Browse the repository at this point in the history
Misc Updates, Cleanup After Decaf
  • Loading branch information
confused-Techie authored Mar 14, 2023
2 parents 87e7b9e + 8dec1ec commit 9d96936
Show file tree
Hide file tree
Showing 30 changed files with 4,110 additions and 2,084 deletions.
37 changes: 18 additions & 19 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,25 @@
name: CI
name: CI Tests

on: [push]

env:
CI: true
on:
- push
- pull_request

jobs:
Test:
test:
name: Test
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-20.04, macos-latest, windows-2019]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install windows-build-tools
if: ${{ matrix.os == 'windows-latest' }}
run: |
npm config set msvs_version 2019
- name: Install dependencies
run: npm i
- name: Run tests
run: npm test
- name: Checkout our Source
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install Dependencies
run: npm install
- name: Run Tests
run: npm test
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
node_modules/
.DS_Store
npm-debug.log
lib/
api.json
61 changes: 0 additions & 61 deletions Gruntfile.coffee

This file was deleted.

8 changes: 8 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
module.exports = (grunt) => {
grunt.initConfig({
pkg: grunt.file.readJSON("package.json")

});

grunt.loadNpmTasks("grunt-atomdoc");
};
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,3 +120,4 @@ lines and a `tags` key, pointing to an array of tags arrays described above.
* Run `npm test` to run the specs
* Run `npm run benchmark` to benchmark fully tokenizing jQuery 2.0.3 and
the CSS for Twitter Bootstrap 3.1.1
* If you make changes to `./src/scope-selector-parser.pegjs` ensure to run `npm run parse` to generate the JS form of PegJS.
9 changes: 9 additions & 0 deletions lib/first-mate.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@

module.exports = {
ScopeSelector: require("./scope-selector.js"),
GrammarRegistry: require("./grammar-registry.js"),
Grammar: require("./grammar.js"),
get OnigRegExp() {
return require("oniguruma").OnigRegExp;
}
};
Loading

0 comments on commit 9d96936

Please sign in to comment.