How to specify the version in bower override? -


this part of bower.json:

"overrides": {   "tinymce-dist": {     "main": [       "tinymce.js",       "themes/modern/theme.js",       "plugins/*/plugin.js"     ]   } }, 

for reason of this issue, want specify version of tinymce-dist 4.3.12. how work? adding "version": "4.3.12" doesn't work.

thank you!

type command in project root. remove tinymce-dist first , reinstall in version 4.3.12. solve problem.

$ bower uninstall --save tinymce-dist $ bower install --save tinymce-dist#4.3.12 

refer doc,your bower.json should adds dependency specification. command above jobs you.

"dependencies": {     "tinymce-dist": "4.3.12" }, 

Comments

Popular posts from this blog

Spring Boot + JPA + Hibernate: Unable to locate persister -

go - Golang: panic: runtime error: invalid memory address or nil pointer dereference using bufio.Scanner -

c - double free or corruption (fasttop) -