Skip to content

Commit

Permalink
Merge pull request #3011 from Zalastax/remove-typings-generator
Browse files Browse the repository at this point in the history
Remove typings generator
  • Loading branch information
kjhollen authored Jun 15, 2018
2 parents 16f4420 + 79784ee commit f5e4886
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 661 deletions.
7 changes: 1 addition & 6 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -426,11 +426,6 @@ module.exports = function(grunt) {
// Load release task
grunt.loadTasks('tasks/release');

// Load typescript task
grunt.registerTask('typescript', function() {
require('./tasks/typescript/task.js')(grunt);
});

// Load the external libraries used.
grunt.loadNpmTasks('grunt-contrib-compress');
grunt.loadNpmTasks('grunt-contrib-connect');
Expand Down Expand Up @@ -476,7 +471,7 @@ module.exports = function(grunt) {
'mochaTest'
]);
grunt.registerTask('test:nobuild', ['eslint:test', 'connect', 'mocha']);
grunt.registerTask('yui', ['yuidoc:prod', 'minjson', 'typescript']);
grunt.registerTask('yui', ['yuidoc:prod', 'minjson']);
grunt.registerTask('yui:test', ['yuidoc:prod', 'connect', 'mocha:yui']);
grunt.registerTask('yui:dev', [
'yui:prod',
Expand Down
5 changes: 1 addition & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,17 +102,14 @@
},
"license": "LGPL-2.1",
"main": "./lib/p5.js",
"types": "./lib/p5.d.ts",
"files": [
"license.txt",
"lib/p5.min.js",
"lib/p5.js",
"lib/addons/p5.sound.js",
"lib/addons/p5.sound.min.js",
"lib/addons/p5.dom.js",
"lib/addons/p5.dom.min.js",
"lib/p5.d.ts",
"lib/p5.global-mode.d.ts"
"lib/addons/p5.dom.min.js"
],
"description": "[![Build Status](https://travis-ci.org/processing/p5.js.svg?branch=master)](https://travis-ci.org/processing/p5.js) [![npm version](https://badge.fury.io/js/p5.svg)](https://www.npmjs.com/package/p5)",
"bugs": {
Expand Down
6 changes: 0 additions & 6 deletions tasks/release/release-github.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,6 @@ module.exports = function(grunt) {
'./lib/addons/p5.sound.min.js',
'application/javascript'
],
p5ts: ['p5.d.ts', './lib/p5.d.ts', 'text/plain'],
p5globalts: [
'p5.global-mode.d.ts',
'./lib/p5.global-mode.d.ts',
'text/plain'
],
p5zip: ['p5.zip', './p5.zip', 'application/zip']
};

Expand Down
119 changes: 0 additions & 119 deletions tasks/typescript/emit.js

This file was deleted.

Loading

0 comments on commit f5e4886

Please sign in to comment.