Skip to content

Commit b4a74eb

Browse files
committed
✨ switch package name to jQuery-LTS
1 parent 8f1483b commit b4a74eb

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ MODULES_WITH_PLUGINS = ${SRC_DIR}/intro.js\
3939
${PLUGINS}\
4040
${SRC_DIR}/outro.js
4141

42-
JQ = ${DIST_DIR}/jquery.js
43-
JQ_LITE = ${DIST_DIR}/jquery.lite.js
44-
JQ_MIN = ${DIST_DIR}/jquery.min.js
45-
JQ_PACK = ${DIST_DIR}/jquery.pack.js
46-
4742
JQ_VER = `cat version.txt`
43+
44+
JQ = ${DIST_DIR}/jquery-lts-${JQ_VER}.js
45+
JQ_LITE = ${DIST_DIR}/jquery-lts-${JQ_VER}.lite.js
46+
JQ_MIN = ${DIST_DIR}/jquery-lts-${JQ_VER}.min.js
47+
JQ_PACK = ${DIST_DIR}/jquery-lts-${JQ_VER}.pack.js
4848
VER = sed s/@VERSION/${JQ_VER}/
4949

5050
JAR = java -jar ${BUILD_DIR}/js.jar

component.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name" : "jquery",
3-
"version" : "1.2.7-sec",
2+
"name" : "jquery-lts",
3+
"version" : "1.2.7",
44
"main" : "./jquery.js",
55
"dependencies": {
66
}

jquery.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(function(){
22
/*
3-
* jQuery 1.2.7-sec - New Wave Javascript
3+
* jQuery-LTS 1.2.7 - New Wave Javascript
44
*
55
* Copyright (c) 2008 John Resig (jquery.com)
66
* Dual licensed under the MIT (MIT-LICENSE.txt)
@@ -85,7 +85,7 @@ jQuery.fn = jQuery.prototype = {
8585
},
8686

8787
// The current version of jQuery being used
88-
jquery: "1.2.7-sec",
88+
jquery: "1.2.7",
8989

9090
// The number of elements contained in the matched element set
9191
size: function() {

src/core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* jQuery @VERSION - New Wave Javascript
2+
* jQuery-LTS @VERSION - New Wave Javascript
33
*
44
* Copyright (c) 2008 John Resig (jquery.com)
55
* Dual licensed under the MIT (MIT-LICENSE.txt)

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.7-sec
1+
1.2.7

0 commit comments

Comments
 (0)