This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.awt.event.KeyAdapter; | |
import java.awt.event.KeyEvent; | |
import java.util.Vector; | |
import javax.swing.DefaultComboBoxModel; | |
import javax.swing.JComboBox; | |
import javax.swing.JTextField; | |
public class ComboListener extends KeyAdapter | |
{ | |
@SuppressWarnings("rawtypes") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare module 'tiptap' { | |
import Vue from 'vue'; | |
export class Editor { | |
public constructor({}); | |
public setOptions({}): void; | |
public setContent(content: string, emitUpdate?: boolean): void; | |
public getHTML(): string; | |
public destroy(): void; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const git = require('git-rev'), | |
package = require('./package.json'), | |
fs = require('fs'); | |
console.log('\n------------------- create version.json file -------------------\n'); | |
Promise.all([ | |
new Promise((resolve, reject) => { | |
git.short(hash => { | |
if(hash) { |