Skip to content

Commit

Permalink
change the newly-unnecessary header to a warning instead
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHicks committed Sep 9, 2022
1 parent f864fe3 commit e926630
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 24 deletions.
16 changes: 4 additions & 12 deletions Session.omnifocusjs/Resources/start.js
@@ -1,16 +1,8 @@
"use strict";
/*{
"type": "action",
"targets": ["omnifocus"],
"author": "Brian Hicks",
"identifier": "zone.bytes.focus",
"version": "1.0",
"description": "Start a pomodoro for the selected task",
"label": "Focus",
"shortLabel": "Focus",
"paletteLabel": "Focus",
"image": "clock"
}*/
/*
WARNING: if you're looking at the file ending in .js and want to make changes,
don't! Modify the .ts file and run `tsc` instead!
*/
(() => {
var action = new PlugIn.Action(async (selection, sender) => {
try {
Expand Down
16 changes: 4 additions & 12 deletions Session.omnifocusjs/Resources/start.ts
@@ -1,15 +1,7 @@
/*{
"type": "action",
"targets": ["omnifocus"],
"author": "Brian Hicks",
"identifier": "zone.bytes.focus",
"version": "1.0",
"description": "Start a pomodoro for the selected task",
"label": "Focus",
"shortLabel": "Focus",
"paletteLabel": "Focus",
"image": "clock"
}*/
/*
WARNING: if you're looking at the file ending in .js and want to make changes,
don't! Modify the .ts file and run `tsc` instead!
*/
(() => {
var action = new PlugIn.Action(async (selection: Selection, sender: any) => {
try {
Expand Down

0 comments on commit e926630

Please sign in to comment.