@oroinc/oro-stylelint-config 6.1.0-lts001 → 6.1.0-lts002

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,17 @@
1
+ #!/bin/sh
2
+ basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3
+
4
+ case `uname` in
5
+ *CYGWIN*) basedir=`cygpath -w "$basedir"`;;
6
+ esac
7
+
8
+ if [ -z "$NODE_PATH" ]; then
9
+ export NODE_PATH="/home/vyustyniuk/oro/sites/oro-1/node_modules/.pnpm/stylelint@16.19.1_typescript@4.9.5/node_modules/stylelint/bin/node_modules:/home/vyustyniuk/oro/sites/oro-1/node_modules/.pnpm/stylelint@16.19.1_typescript@4.9.5/node_modules/stylelint/node_modules:/home/vyustyniuk/oro/sites/oro-1/node_modules/.pnpm/stylelint@16.19.1_typescript@4.9.5/node_modules:/home/vyustyniuk/oro/sites/oro-1/node_modules/.pnpm/node_modules"
10
+ else
11
+ export NODE_PATH="/home/vyustyniuk/oro/sites/oro-1/node_modules/.pnpm/stylelint@16.19.1_typescript@4.9.5/node_modules/stylelint/bin/node_modules:/home/vyustyniuk/oro/sites/oro-1/node_modules/.pnpm/stylelint@16.19.1_typescript@4.9.5/node_modules/stylelint/node_modules:/home/vyustyniuk/oro/sites/oro-1/node_modules/.pnpm/stylelint@16.19.1_typescript@4.9.5/node_modules:/home/vyustyniuk/oro/sites/oro-1/node_modules/.pnpm/node_modules:$NODE_PATH"
12
+ fi
13
+ if [ -x "$basedir/node" ]; then
14
+ exec "$basedir/node" "$basedir/../stylelint/bin/stylelint.mjs" "$@"
15
+ else
16
+ exec node "$basedir/../stylelint/bin/stylelint.mjs" "$@"
17
+ fi
package/package.json CHANGED
@@ -2,12 +2,15 @@
2
2
  "name": "@oroinc/oro-stylelint-config",
3
3
  "author": "Oro, Inc. (https://oroinc.com)",
4
4
  "license": "MIT",
5
- "version": "6.1.0-lts001",
5
+ "version": "6.1.0-lts002",
6
6
  "description": "Stylelint config used by ORO",
7
7
  "main": "index.js",
8
8
  "files": [
9
9
  "index.js"
10
10
  ],
11
+ "bin": {
12
+ "stylelint": "node_modules/.bin/stylelint"
13
+ },
11
14
  "dependencies": {
12
15
  "@stylistic/stylelint-config": "^2.0.0",
13
16
  "@stylistic/stylelint-plugin": "^3.1.2",