Skip to content

Commit 4b60a35

Browse files
committed
Updated JS Modules Dependencies
1 parent b524647 commit 4b60a35

File tree

6 files changed

+29
-27
lines changed

6 files changed

+29
-27
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
- Added permanent warning at the top of admin when using PHP 5.4. Gantry will soon drop PHP 5.4 support. Please upgrade as soon as possible. [More details](http://gantry.org/blog/php54-end-of-support)
77
2. [](#improved)
88
- Allow Presets description to be translatable (#1212)
9-
- Converted all hardcoded JS strings to translatable languages (#1212)
9+
- Converted all hardcoded JS strings to translatable languages (#1212)
1010
3. [](#bugfix)
1111
- Fixed `Can't use method return value in write context` on PHP 5.4 (#1413)
1212
- Fixed `Document::addScript` not allowing string argument (#1414)

assets/common/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
"gulp-rename": "^1.2.2",
1717
"gulp-ruby-sass": "^2.0.6",
1818
"gulp-sourcemaps": "^2.0.0-alpha",
19-
"gulp-uglify": "^1.5.3",
19+
"gulp-uglify": "^1.5.4",
2020
"gulp-util": "^3.0.7",
2121
"merge-stream": "^1.0.0",
2222
"vinyl-buffer": "^1.0.0",
2323
"vinyl-source-stream": "^1.1.0",
2424
"watchify": "^3.7.0",
25-
"yargs": "^4.7.1"
25+
"yargs": "^4.8.0"
2626
}
2727
}

engines/common/nucleus/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
"gulp-rename": "^1.2.2",
1010
"gulp-ruby-sass": "^2.0.6",
1111
"gulp-sourcemaps": "^2.0.0-alpha",
12-
"gulp-uglify": "^1.5.3",
12+
"gulp-uglify": "^1.5.4",
1313
"gulp-util": "^3.0.7",
1414
"merge-stream": "^1.0.0",
1515
"vinyl-buffer": "^1.0.0",
1616
"vinyl-source-stream": "^1.1.0",
1717
"watchify": "^3.7.0",
18-
"yargs": "^4.7.1"
18+
"yargs": "^4.8.0"
1919
}
2020
}

package.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,18 @@
1212
"gulp-rename": "^1.2.2",
1313
"gulp-ruby-sass": "^2.0.6",
1414
"gulp-sourcemaps": "^2.0.0-alpha",
15-
"gulp-uglify": "^1.5.3",
15+
"gulp-uglify": "^1.5.4",
1616
"gulp-util": "^3.0.7",
1717
"merge-stream": "^1.0.0",
1818
"vinyl-buffer": "^1.0.0",
1919
"vinyl-source-stream": "^1.1.0",
2020
"watchify": "^3.7.0",
21-
"yargs": "^4.7.1"
21+
"yargs": "^4.8.0"
2222
},
2323
"scripts": {
24-
"build-assets": "rm -rf node_modules && rm -rf assets/common/node_modules && rm -rf platforms/common/node_modules && rm -rf engines/common/nucleus/node_modules && npm install && cd assets/common && npm install && cd ../../ && cd platforms/common && npm install && cd ../../ && cd engines/common/nucleus && npm install && cd ../../../"
24+
"list-paths": "echo './' && echo 'assets/common' && echo 'platforms/common' && echo 'engines/common/nucleus'",
25+
"build-assets": "rm -rf node_modules && rm -rf assets/common/node_modules && rm -rf platforms/common/node_modules && rm -rf engines/common/nucleus/node_modules && npm install && cd assets/common && npm install && cd ../../ && cd platforms/common && npm install && cd ../../ && cd engines/common/nucleus && npm install && cd ../../../",
26+
"ncu": "ncu && cd assets/common && ncu && cd ../../ && cd platforms/common && ncu && cd ../../ && cd engines/common/nucleus && ncu && cd ../../../"
2527
},
2628
"repository": {
2729
"type": "git",

0 commit comments

Comments
 (0)