Remove jquery from package, too.

This commit is contained in:
kovacsv 2021-11-27 12:23:14 +01:00
parent 314b7bc563
commit bfd98a7550
2 changed files with 0 additions and 7 deletions

View File

@ -27,7 +27,6 @@
"@simonwep/pickr": "1.8.2",
"draco3d": "1.4.3",
"fflate": "0.7.1",
"jquery": "3.5.1",
"rhino3dm": "7.11.1",
"three": "0.135.0",
"web-ifc": "0.0.29"

View File

@ -5,11 +5,6 @@ import shutil
from lib import tools_lib as Tools
jqueryFileMap = [
[os.path.join ('jquery', 'LICENSE.txt'), os.path.join ('jquery.license.md')],
[os.path.join ('jquery', 'dist', 'jquery.min.js'), os.path.join ('jquery.min.js')]
]
pickrFileMap = [
[os.path.join ('@simonwep', 'pickr', 'LICENSE'), os.path.join ('pickr.license.md')],
[os.path.join ('@simonwep', 'pickr', 'dist', 'pickr.es5.min.js'), os.path.join ('pickr.es5.min.js')],
@ -73,7 +68,6 @@ def Main (argv):
nodeModulesDir = os.path.join (rootDir, 'node_modules')
libsDir = os.path.join (rootDir, 'libs')
UpdateModule (jqueryFileMap, nodeModulesDir, libsDir)
UpdateModule (pickrFileMap, nodeModulesDir, libsDir)
UpdateModule (threeJsFileMap, nodeModulesDir, libsDir)
UpdateModule (dracoFileMap, nodeModulesDir, libsDir)