Skip to content

Commit 868dc4b

Browse files
author
Alan Meekins
committed
Move npm package to root so it can be indexed
1 parent 1b52d15 commit 868dc4b

File tree

4 files changed

+14
-15
lines changed

4 files changed

+14
-15
lines changed

utils/.jshintrc .jshintrc

File renamed without changes.

utils/Gruntfile.js Gruntfile.js

+14-15
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ module.exports = function(grunt) {
44
pkg: grunt.file.readJSON('package.json'),
55
concat: {
66
build: {
7-
src : ['../src/*.js', '../src/**/*.js'],
8-
dest : '../build/ros3d.js'
7+
src : ['./src/*.js', './src/**/*.js'],
8+
dest : './build/ros3d.js'
99
}
1010
},
1111
jshint: {
@@ -14,12 +14,12 @@ module.exports = function(grunt) {
1414
},
1515
files: [
1616
'Gruntfile.js',
17-
'../build/ros3d.js'
17+
'./build/ros3d.js'
1818
]
1919
},
2020
karma: {
2121
build: {
22-
configFile: '../test/karma.conf.js',
22+
configFile: './test/karma.conf.js',
2323
singleRun: true,
2424
browsers: ['PhantomJS']
2525
}
@@ -29,8 +29,8 @@ module.exports = function(grunt) {
2929
report: 'min'
3030
},
3131
build: {
32-
src: '../build/ros3d.js',
33-
dest: '../build/ros3d.min.js'
32+
src: './build/ros3d.js',
33+
dest: './build/ros3d.min.js'
3434
}
3535
},
3636
watch: {
@@ -39,8 +39,8 @@ module.exports = function(grunt) {
3939
interrupt: true
4040
},
4141
files: [
42-
'../src/*.js',
43-
'../src/**/*.js'
42+
'./src/*.js',
43+
'./src/**/*.js'
4444
],
4545
tasks: ['concat']
4646
},
@@ -51,8 +51,8 @@ module.exports = function(grunt) {
5151
files: [
5252
'Gruntfile.js',
5353
'.jshintrc',
54-
'../src/*.js',
55-
'../src/**/*.js'
54+
'./src/*.js',
55+
'./src/**/*.js'
5656
],
5757
tasks: ['build']
5858
}
@@ -61,16 +61,16 @@ module.exports = function(grunt) {
6161
options: {
6262
force: true
6363
},
64-
doc: ['../doc']
64+
doc: ['./doc']
6565
},
6666
jsdoc: {
6767
doc: {
6868
src: [
69-
'../src/*.js',
70-
'../src/**/*.js'
69+
'./src/*.js',
70+
'./src/**/*.js'
7171
],
7272
options: {
73-
destination: '../doc',
73+
destination: './doc',
7474
configure: 'jsdoc_conf.json'
7575
}
7676
}
@@ -90,4 +90,3 @@ module.exports = function(grunt) {
9090
grunt.registerTask('build_and_watch', ['watch']);
9191
grunt.registerTask('doc', ['clean', 'jsdoc']);
9292
};
93-
File renamed without changes.

utils/package.json package.json

File renamed without changes.

0 commit comments

Comments
 (0)