Skip to content

Commit

Permalink
Convert to publish on npm, and bump version number to 0.8.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
wkeese committed Dec 13, 2019
1 parent f7581e3 commit 41d3cda
Show file tree
Hide file tree
Showing 7 changed files with 3,094 additions and 27 deletions.
2 changes: 1 addition & 1 deletion .jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"maxlen": 120,
"indent": 4,
"maxerr": 250,
"predef": [ "require", "define", "intern", "WeakMap" ],
"predef": [ "require", "requirejs", "define", "intern", "WeakMap" ],
"quotmark": "double",
"maxcomplexity": 10
}
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "decor",
"version": "0.7.0",
"version": "0.8.0",
"dependencies": {
"dcl": "^2.0.6",
"requirejs": "2.1.x",
Expand Down
11 changes: 7 additions & 4 deletions intern.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@
"loader": {
"script": "./intern-requirejs-loader.js",
"options": {
"baseUrl": "."
"baseUrl": "./node_modules",
"packages": [
{ "name": "decor", "location": ".." }
]
}
}
},
Expand All @@ -26,9 +29,9 @@
"loader": {
"script": "decor/intern-requirejs-loader.js",
"options": {
"baseUrl": "../../..",
"baseUrl": "../../../decor/node_modules",
"packages": [
{ "name": "intern", "location": "decor/node_modules/intern" }
{ "name": "decor", "location": ".." }
]
}
}
Expand All @@ -48,7 +51,7 @@
],

"functionalSuites": [
"./tests/functional/sniff"
"decor/tests/functional/sniff"
],

"coverage": [
Expand Down
Loading

0 comments on commit 41d3cda

Please sign in to comment.