Skip to content

Commit a303a0c

Browse files
committedMay 31, 2018
Remove Bower configuration files
1 parent ac4c4be commit a303a0c

File tree

6 files changed

+92
-35
lines changed

6 files changed

+92
-35
lines changed
 

‎.bowerrc

-3
This file was deleted.

‎.gitignore

+68
Original file line numberDiff line numberDiff line change
@@ -99,3 +99,71 @@ spyder_terminal/server/static/components/*
9999

100100
# Git file
101101
*.orig
102+
103+
# Logs
104+
logs
105+
*.log
106+
npm-debug.log*
107+
yarn-debug.log*
108+
yarn-error.log*
109+
110+
# Runtime data
111+
pids
112+
*.pid
113+
*.seed
114+
*.pid.lock
115+
116+
# Directory for instrumented libs generated by jscoverage/JSCover
117+
lib-cov
118+
119+
# Coverage directory used by tools like istanbul
120+
coverage
121+
122+
# nyc test coverage
123+
.nyc_output
124+
125+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
126+
.grunt
127+
128+
# Bower dependency directory (https://bower.io/)
129+
bower_components
130+
131+
# node-waf configuration
132+
.lock-wscript
133+
134+
# Compiled binary addons (https://nodejs.org/api/addons.html)
135+
build/Release
136+
137+
# Dependency directories
138+
node_modules/
139+
jspm_packages/
140+
141+
# TypeScript v1 declaration files
142+
typings/
143+
144+
# Optional npm cache directory
145+
.npm
146+
147+
# Optional eslint cache
148+
.eslintcache
149+
150+
# Optional REPL history
151+
.node_repl_history
152+
153+
# Output of 'npm pack'
154+
*.tgz
155+
156+
# Yarn Integrity file
157+
.yarn-integrity
158+
159+
# dotenv environment variables file
160+
.env
161+
162+
# next.js build output
163+
.next
164+
165+
# vuepress build output
166+
.vuepress/dist
167+
168+
# Serverless directories
169+
.serverless

‎.yarnrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--modules-folder spyder_terminal/server/static/components

‎bower.json

-25
This file was deleted.

‎package.json

100755100644
+4-7
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,12 @@
77
"author": "Edgar Andrés Margffoy Tuay <andfoy@gmail.com>",
88
"license": "MIT",
99
"dependencies": {
10-
"@bower_components/fetch": "github/fetch#^2.0.3",
11-
"@bower_components/jquery": "jquery/jquery-dist#^3.2.1",
12-
"@bower_components/promise-polyfill": "taylorhakes/promise-polyfill#^6.0.2",
13-
"@bower_components/xterm.js": "sourcelair/xterm.js#^2.7.0"
10+
"fetch": "github/fetch#^2.0.3",
11+
"jquery": "jquery/jquery-dist#^3.2.1",
12+
"promise-polyfill": "taylorhakes/promise-polyfill#^6.0.2",
13+
"xterm.js": "sourcelair/xterm.js#^2.7.0"
1414
},
1515
"engines": {
1616
"yarn": ">= 1.0.0"
17-
},
18-
"scripts": {
19-
"postinstall": "node -e \"try { require('fs').symlinkSync(require('path').resolve('node_modules/@bower_components'), 'spyder_terminal/server/static/components', 'junction') } catch (e) { }\""
2017
}
2118
}

‎yarn.lock

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2+
# yarn lockfile v1
3+
4+
5+
fetch@github/fetch#^2.0.3:
6+
version "2.0.4"
7+
resolved "https://codeload.github.com/github/fetch/tar.gz/cbb313bf09512efda9444e40fe9e8ac432ac1108"
8+
9+
jquery@jquery/jquery-dist#^3.2.1:
10+
version "3.3.1"
11+
resolved "https://codeload.github.com/jquery/jquery-dist/tar.gz/9e8ec3d10fad04748176144f108d7355662ae75e"
12+
13+
promise-polyfill@taylorhakes/promise-polyfill#^6.0.2:
14+
version "6.0.2"
15+
resolved "https://codeload.github.com/taylorhakes/promise-polyfill/tar.gz/3591c457e9999ecf5e5c648ed68d4f21a0ad3d11"
16+
17+
xterm.js@sourcelair/xterm.js#^2.7.0:
18+
version "2.9.2"
19+
resolved "https://codeload.github.com/sourcelair/xterm.js/tar.gz/ea07bf8f694a6e9714779b19c174e26162c39196"

0 commit comments

Comments
 (0)
Please sign in to comment.