Skip to content

Commit

Permalink
chore: upgrade typescript/eslint related dependencies, drop node8 and…
Browse files Browse the repository at this point in the history
… add node16 CI support (#3628)

* chore: upgrade typescript related dependencies

* chore: add issue comment link

* chore: fix eslint ci add node16 support and drop node8 support

* Revert node16 support

* Add specifying nodejs_version install script

* support windows platform ci

* fix: cross-env bin

* fix: move cross-env location and delete outdated code

* Delete appveyor.yml

#3629 (comment) remove appveyor for fast ci.
  • Loading branch information
iChenLei committed Jul 3, 2021
1 parent 1ab41c1 commit 3173fdd
Show file tree
Hide file tree
Showing 8 changed files with 1,152 additions and 699 deletions.
71 changes: 0 additions & 71 deletions .eslintrc.json

This file was deleted.

31 changes: 0 additions & 31 deletions appveyor.yml

This file was deleted.

3 changes: 2 additions & 1 deletion packages/less/.eslintignore
Expand Up @@ -2,4 +2,5 @@ Gruntfile.js
dist/*
tmp/*
lib/*
test/browser/less.min.js
test/browser/less.min.js
node_modules
72 changes: 70 additions & 2 deletions packages/less/.eslintrc.json
@@ -1,3 +1,71 @@
{
"extends": "../../.eslintrc.json"
}
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": ["@typescript-eslint"],
"env": {
"browser": true,
"node": true
},
"globals": {},
"rules": {
"no-eval": 2,
"no-use-before-define": [
2,
{
"functions": false
}
],
"no-undef": 0,
"no-unused-vars": 1,
"no-caller": 2,
"no-eq-null": 1,
"guard-for-in": 2,
"no-implicit-coercion": [
2,
{
"boolean": false,
"string": true,
"number": true
}
],
"no-with": 2,
"no-mixed-spaces-and-tabs": 2,
"no-multiple-empty-lines": 2,
"dot-location": [2, "property"],
"operator-linebreak": [0, "after"],
"keyword-spacing": [2, {}],
"space-unary-ops": [
2,
{
"words": false,
"nonwords": false
}
],
"no-spaced-func": 2,
"space-before-function-paren": [
1,
{
"anonymous": "ignore",
"named": "never"
}
],
"comma-dangle": [2, "never"],
"no-trailing-spaces": 0,
"max-len": [2, 160],
"comma-style": [2, "last"],
"curly": [2, "all"],
"space-infix-ops": 2,
"spaced-comment": 1,
"space-before-blocks": [2, "always"],
"indent": [
2,
4,
{
"SwitchCase": 1
}
]
}
}
17 changes: 6 additions & 11 deletions packages/less/Gruntfile.js
Expand Up @@ -12,7 +12,6 @@ module.exports = function(grunt) {
// Report the elapsed execution time of tasks.
require("time-grunt")(grunt);

var COMPRESS_FOR_TESTS = false;
var git = require("git-rev");

// Sauce Labs browser
Expand Down Expand Up @@ -184,17 +183,11 @@ module.exports = function(grunt) {
// Make the SauceLabs jobs
["all"].concat(browserTests).map(makeJob);

var semver = require('semver');
var path = require('path');

// Handle async / await in Rollup build for tests
// Remove this when Node 6 is no longer supported for the build/test process
const nodeVersion = semver.major(process.versions.node);
const tsNodeRuntime = path.resolve(path.join('node_modules', '.bin', 'ts-node'));
let scriptRuntime = 'node';
if (nodeVersion < 8) {
scriptRuntime = tsNodeRuntime;
}
const crossEnv = path.resolve(path.join('node_modules', '.bin', 'cross-env'));

// Project configuration.
grunt.initConfig({
Expand All @@ -209,7 +202,7 @@ module.exports = function(grunt) {
build: {
command: [
/** Browser runtime */
scriptRuntime + " build/rollup.js --dist",
"node build/rollup.js --dist",
/** Copy to repo root */
"npm run copy:root",
/** Node.js runtime */
Expand All @@ -219,17 +212,19 @@ module.exports = function(grunt) {
testbuild: {
command: [
"npm run build",
scriptRuntime + " build/rollup.js --browser --out=./tmp/browser/less.min.js"
"node build/rollup.js --browser --out=./tmp/browser/less.min.js"
].join(" && ")
},
testcjs: {
command: "npm run build"
},
testbrowser: {
command: scriptRuntime + " build/rollup.js --browser --out=./tmp/browser/less.min.js"
command: "node build/rollup.js --browser --out=./tmp/browser/less.min.js"
},
test: {
command: [
// https://github.com/TypeStrong/ts-node/issues/693#issuecomment-848907036
crossEnv + " TS_NODE_SCOPE=true",
tsNodeRuntime + " test/test-es6.ts",
"node test/index.js"
].join(' && ')
Expand Down

0 comments on commit 3173fdd

Please sign in to comment.