mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
Moving out javascript driver (#3040)
This commit is contained in:
committed by
Joram Wilander
parent
02f8691fa4
commit
880ef25ab1
File diff suppressed because it is too large
Load Diff
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "mattermost",
|
||||
"name": "mattermost-webapp",
|
||||
"version": "0.0.1",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
@@ -17,6 +17,7 @@
|
||||
"jquery": "2.2.3",
|
||||
"keymirror": "0.1.1",
|
||||
"marked": "mattermost/marked#cb85e5cc81bc7937dbb73c3c53d9532b1b97e3ca",
|
||||
"mattermost": "mattermost/mattermost-javascript#master",
|
||||
"match-at": "0.1.0",
|
||||
"object-assign": "4.1.0",
|
||||
"perfect-scrollbar": "0.6.11",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
||||
// See License.txt for license information.
|
||||
|
||||
import Client from '../client/client.jsx';
|
||||
import Client from '../node_modules/mattermost/client.jsx';
|
||||
import jqd from 'jquery-deferred';
|
||||
|
||||
class TestHelperClass {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
||||
// See License.txt for license information.
|
||||
|
||||
import Client from '../client/client.jsx';
|
||||
import Client from 'mattermost/client.jsx';
|
||||
import TeamStore from '../stores/team_store.jsx';
|
||||
import BrowserStore from '../stores/browser_store.jsx';
|
||||
import * as GlobalActions from 'action_creators/global_actions.jsx';
|
||||
|
||||
@@ -42,6 +42,15 @@ var config = {
|
||||
cacheDirectory: DEV
|
||||
}
|
||||
},
|
||||
{
|
||||
test: /node_modules\/mattermost\/client\.jsx?$/,
|
||||
loader: 'babel',
|
||||
query: {
|
||||
presets: ['react', 'es2015-webpack', 'stage-0'],
|
||||
plugins: ['transform-runtime'],
|
||||
cacheDirectory: DEV
|
||||
}
|
||||
},
|
||||
{
|
||||
test: /\.json$/,
|
||||
loader: 'json'
|
||||
|
||||
Reference in New Issue
Block a user