Skip to content

Commit cbc897e

Browse files
committed
Remove TypeScript footprint
Revert "ES6 tesconfig" This reverts commit 105a627. Revert "blocks in in gitignore, tsconfig, package" This reverts commit 8afd835. Revert "Copy misc/blocks to lib_src" This reverts commit 8ec60c8. Revert "Update package.json" This reverts commit 7fc7bfc. Revert "gitignore + Local conversion:" This reverts commit f51d8fc. Revert "Update package-lock.json" This reverts commit 20e34ab. Revert "Adding Scripts" This reverts commit cdea936. Revert "Use GithubActions instead of Travis/Appveyor" This reverts commit b61e7b7. Revert "Add Eslint" This reverts commit 1982483. Revert "Adding prettier" This reverts commit 7db483e. Revert "Create tslint.json" This reverts commit 8fa91ad. Revert "Create tsconfig.json" This reverts commit a144b31. Revert "Add @types + tslint devDependencies" This reverts commit d81d5e7.
1 parent 6e602af commit cbc897e

File tree

10 files changed

+164
-2998
lines changed

10 files changed

+164
-2998
lines changed

.eslintrc.json

Lines changed: 0 additions & 80 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 0 additions & 64 deletions
This file was deleted.

.gitignore

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
11
.DS_Store
22
npm-debug.log
33
node_modules
4-
lib_src/**/*
5-
!lib_src/tsconfig.json
6-
!lib_src/tslint.json
7-
tsconfig.tsbuildinfo
8-
9-
10-
11-
12-
13-
!lib_src/misc/blocks.ts

.travis.yml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
language: julia
2+
3+
julia:
4+
- 1
5+
- nightly
6+
7+
env:
8+
global:
9+
- APM_TEST_PACKAGES="ink language-julia"
10+
- ATOM_LINT_WITH_BUNDLED_NODE="true"
11+
12+
matrix:
13+
- ""
14+
- ATOMJL=master
15+
16+
os:
17+
- linux
18+
19+
matrix:
20+
include:
21+
# # Sanity check for OS X
22+
# - os: osx
23+
# julia: 1
24+
# env: ATOMJL=master
25+
# Sanity check for Atom Beta
26+
- os: linux
27+
julia: 1
28+
env: ATOM_CHANNEL=beta
29+
allow_failures:
30+
- julia: nightly
31+
- env: ATOM_CHANNEL=beta
32+
33+
script:
34+
- julia ci/packages.jl
35+
- curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh
36+
- chmod u+x build-package.sh
37+
- ./build-package.sh
38+
39+
dist: xenial
40+
addons:
41+
apt:
42+
sources:
43+
- ubuntu-toolchain-r-test
44+
packages:
45+
- g++-6
46+
- build-essential
47+
- fakeroot
48+
- git
49+
- libsecret-1-dev
50+
51+
notifications:
52+
email: false

appveyor.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
### Project specific config ###
2+
environment:
3+
APM_TEST_PACKAGES: "ink language-julia"
4+
ATOM_LINT_WITH_BUNDLED_NODE: "true"
5+
6+
matrix:
7+
- ATOM_CHANNEL: stable
8+
- ATOM_CHANNEL: beta
9+
10+
### Generic setup follows ###
11+
build_script:
12+
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/atom/ci/master/build-package.ps1'))
13+
- julia: ci/packages.jl
14+
15+
branches:
16+
only:
17+
- master
18+
19+
version: "{build}"
20+
platform: x64
21+
clone_depth: 10
22+
skip_tags: true
23+
test: off
24+
deploy: off

0 commit comments

Comments
 (0)