How to ignore some javascript libraries with html5 template?

I just upgraded my NetBeans from 7.3 Beta 2 to 7.3 RC1. In beta 2, I could only exclude full folders (with the php project type). To ignore specific files, I edited the project.properties file. It helped me a lot to ignore several versions of the included libraries.

In RC1, we have the Html5 project type. I no longer see the ability to ignore files, and adding ignore.path to project.properties no longer seems like a trick for me.

So my question is: is there a way to ignore files with an Html 5 project type? If so, how?

If not, is this the only way to solve this, to move the library sources outside of my project and include only debug type files with all comments, or how do you solve this problem with too many versions my libraries are sorted out?

+3
source share
1 answer

A partial solution could go from HTML5 to PHP Project in Netbeans.

  • Rename the nbproject folder to nbproject-html in the project source folder to save the netbeans settings.
  • Create a Php project with existing sources in Netbeans.
  • Go to project - Properties - Ignored folders - Add your libraries.

. , , Ctrl + Space, php, , Netbeans, HTML5.

netbeans 8 javascript ExtJS.

+1

All Articles