Skip to content

Commit 66e92ad

Browse files
committed
update: bumped ember to 3.8
sysdig-CLA-1.0-signed-off-by: Roberto Scolaro <[email protected]> Signed-off-by: Roberto Scolaro <[email protected]>
1 parent 420ca59 commit 66e92ad

File tree

8 files changed

+1419
-494
lines changed

8 files changed

+1419
-494
lines changed

.eslintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,11 @@
88

99
# dependencies
1010
/bower_components/
11+
/node_modules/
1112

1213
# misc
1314
/coverage/
15+
!.*
1416

1517
# ember-try
1618
/.node_modules.ember-try/

.eslintrc.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,14 @@ module.exports = {
2020
// node files
2121
{
2222
files: [
23+
'.eslintrc.js',
2324
'.template-lintrc.js',
2425
'ember-cli-build.js',
2526
'testem.js',
2627
'blueprints/*/index.js',
2728
'config/**/*.js',
28-
'lib/*/index.js'
29+
'lib/*/index.js',
30+
'server/**/*.js'
2931
],
3032
parserOptions: {
3133
sourceType: 'script',

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ ember-electron/resources/capture-samples/
3636
/node_modules/
3737

3838
# misc
39+
/.env*
40+
/.pnp*
3941
/.sass-cache
4042
/connect.lock
4143
/coverage/

app/styles/app.less

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ You should have received a copy of the GNU General Public License
1414
along with this program. If not, see <http://www.gnu.org/licenses/>.
1515
*/
1616

17-
@import "../../lib/ui-toolkit/addon/styles/addon.less";
18-
@import "../../lib/wsd-core/addon/styles/addon.less";
17+
@import "lib/ui-toolkit/addon/styles/addon.less";
18+
@import "lib/wsd-core/addon/styles/addon.less";
1919

2020
@import "welcome.less";

config/ember-cli-update.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"packages": [
44
{
55
"name": "ember-cli",
6-
"version": "3.4.4",
6+
"version": "3.8.3",
77
"blueprints": [
88
{
99
"name": "app",

lib/wsd-core/addon/styles/addon.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ You should have received a copy of the GNU General Public License
1414
along with this program. If not, see <http://www.gnu.org/licenses/>.
1515
*/
1616

17-
@import "../../lib/ui-toolkit/addon/styles/addon.less";
17+
@import "lib/ui-toolkit/addon/styles/addon.less";
1818

1919
@import "wsd-capture-panel.less";
2020
@import "wsd-capture-header.less";

0 commit comments

Comments
 (0)