-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
02af4ca
commit 33ec5d1
Showing
70 changed files
with
2,188 additions
and
13,466 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
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,10 +1,9 @@ | ||
# Prettier is also run from each package, so the ignores here | ||
# protect against files that may not be within a package | ||
# unconventional js | ||
/blueprints/*/files/ | ||
|
||
# misc | ||
!.* | ||
.lint-todo/ | ||
# compiled output | ||
/dist/ | ||
/declarations/ | ||
|
||
# ember-try | ||
/.node_modules.ember-try/ | ||
/pnpm-lock.ember-try.yaml | ||
# misc | ||
/coverage/ |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
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,32 +1,83 @@ | ||
{ | ||
"private": true, | ||
"name": "@ember/string", | ||
"version": "3.1.1", | ||
"description": "A set of utilities to transform strings", | ||
"type": "module", | ||
"repository": "https://github.com/emberjs/ember-string", | ||
"license": "MIT", | ||
"author": "", | ||
"scripts": { | ||
"build": "pnpm --filter @ember/string build", | ||
"lint": "pnpm --filter '*' lint", | ||
"lint:fix": "pnpm --filter '*' lint:fix", | ||
"prepare": "pnpm build", | ||
"start": "concurrently 'npm:start:*' --restart-after 5000 --prefix-colors cyan,white,yellow", | ||
"start:addon": "pnpm --filter @ember/string start --no-watch.clearScreen", | ||
"start:test-app": "pnpm --filter test-app start", | ||
"test": "pnpm --filter '*' test", | ||
"test:ember": "pnpm --filter '*' test:ember" | ||
"exports": { | ||
".": { | ||
"types": "./declarations/index.d.ts", | ||
"default": "./dist/index.js" | ||
} | ||
}, | ||
"volta": { | ||
"node": "18.4.0" | ||
"typesVersions": { | ||
"*": { | ||
"*": [ | ||
"declarations/*" | ||
] | ||
} | ||
}, | ||
"engines": { | ||
"node": "12.* || 14.* || >= 16" | ||
"files": [ | ||
"dist", | ||
"declarations", | ||
"addon-main.cjs" | ||
], | ||
"scripts": { | ||
"build": "concurrently 'npm:build:*'", | ||
"build:js": "rollup --config", | ||
"build:types": "tsc --declaration", | ||
"lint": "pnpm build; concurrently 'npm:lint:*(!fix)' --names 'lint:'", | ||
"lint:fix": "concurrently 'npm:lint:*:fix' --names 'fix:'", | ||
"lint:js": "eslint . --cache", | ||
"lint:js:fix": "eslint . --fix", | ||
"lint:types": "tsc --noEmit --emitDeclarationOnly false", | ||
"lint:package": "publint", | ||
"lint:published-types": "pnpm pack; attw; rm *.tgz", | ||
"start": "concurrently 'npm:start:*'", | ||
"start:js": "rollup --config --watch --no-watch.clearScreen", | ||
"start:types": "tsc --declaration --watch", | ||
"test": "vitest --run", | ||
"test:types": "tsc --noEmit --project ./tests/type-tests/tsconfig.json", | ||
"test:watch": "vitest", | ||
"prepack": "rollup --config" | ||
}, | ||
"pnpm": { | ||
"overrides": { | ||
"@types/eslint": "^7.0.0" | ||
} | ||
"dependencies": { | ||
"decorator-transforms": "^1.0.1" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.23.6", | ||
"@babel/plugin-transform-typescript": "^7.23.6", | ||
"@babel/runtime": "^7.17.0", | ||
"@embroider/addon-dev": "^4.1.0", | ||
"@tsconfig/ember": "^3.0.2", | ||
"@types/ember__debug": "^4.0.7", | ||
"@typescript-eslint/eslint-plugin": "^6.14.0", | ||
"@typescript-eslint/parser": "^6.14.0", | ||
"@rollup/plugin-babel": "^6.0.4", | ||
"babel-plugin-ember-template-compilation": "^2.2.1", | ||
"concurrently": "^8.2.2", | ||
"ember-template-lint": "^5.13.0", | ||
"eslint": "^8.56.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-ember": "^11.12.0", | ||
"eslint-plugin-n": "^16.4.0", | ||
"eslint-plugin-prettier": "^5.0.1", | ||
"prettier": "^3.1.1", | ||
"prettier-plugin-ember-template-tag": "^1.1.0", | ||
"@arethetypeswrong/cli": "^0.15.0", | ||
"publint": "^0.2.7" | ||
"publint": "^0.2.7", | ||
"rollup": "^4.9.1", | ||
"rollup-plugin-copy": "^3.5.0", | ||
"vitest": "^0.18.0", | ||
"typescript": "^5.3.3" | ||
}, | ||
"publishConfig": { | ||
"registry": "https://registry.npmjs.org" | ||
}, | ||
"volta": { | ||
"node": "20.11.1", | ||
"pnpm": "8.15.4" | ||
} | ||
} |
Oops, something went wrong.