-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
- Loading branch information
Showing
10 changed files
with
164 additions
and
2,998 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,3 @@ | ||
.DS_Store | ||
npm-debug.log | ||
node_modules | ||
lib_src/**/* | ||
!lib_src/tsconfig.json | ||
!lib_src/tslint.json | ||
tsconfig.tsbuildinfo | ||
|
||
|
||
|
||
|
||
|
||
!lib_src/misc/blocks.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
language: julia | ||
|
||
julia: | ||
- 1 | ||
- nightly | ||
|
||
env: | ||
global: | ||
- APM_TEST_PACKAGES="ink language-julia" | ||
- ATOM_LINT_WITH_BUNDLED_NODE="true" | ||
|
||
matrix: | ||
- "" | ||
- ATOMJL=master | ||
|
||
os: | ||
- linux | ||
|
||
matrix: | ||
include: | ||
# # Sanity check for OS X | ||
# - os: osx | ||
# julia: 1 | ||
# env: ATOMJL=master | ||
# Sanity check for Atom Beta | ||
- os: linux | ||
julia: 1 | ||
env: ATOM_CHANNEL=beta | ||
allow_failures: | ||
- julia: nightly | ||
- env: ATOM_CHANNEL=beta | ||
|
||
script: | ||
- julia ci/packages.jl | ||
- curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh | ||
- chmod u+x build-package.sh | ||
- ./build-package.sh | ||
|
||
dist: xenial | ||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- g++-6 | ||
- build-essential | ||
- fakeroot | ||
- git | ||
- libsecret-1-dev | ||
|
||
notifications: | ||
email: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
### Project specific config ### | ||
environment: | ||
APM_TEST_PACKAGES: "ink language-julia" | ||
ATOM_LINT_WITH_BUNDLED_NODE: "true" | ||
|
||
matrix: | ||
- ATOM_CHANNEL: stable | ||
- ATOM_CHANNEL: beta | ||
|
||
### Generic setup follows ### | ||
build_script: | ||
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/atom/ci/master/build-package.ps1')) | ||
- julia: ci/packages.jl | ||
|
||
branches: | ||
only: | ||
- master | ||
|
||
version: "{build}" | ||
platform: x64 | ||
clone_depth: 10 | ||
skip_tags: true | ||
test: off | ||
deploy: off |
Oops, something went wrong.