Skip to content

Commit 224b3c8

Browse files
committed
Convert to (Native™ (Real™) Package™)™
1 parent fae32d2 commit 224b3c8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+7534
-14481
lines changed

.attw.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"ignoreRules": ["cjs-resolves-to-esm"]
3+
}

.ember-cli

-9
This file was deleted.

.eslintignore

+1-16
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,9 @@
11
# unconventional js
22
/blueprints/*/files/
3-
/vendor/
43

54
# compiled output
65
/dist/
7-
/tmp/
8-
9-
# dependencies
10-
/bower_components/
11-
/node_modules/
6+
/declarations/
127

138
# misc
149
/coverage/
15-
!.*
16-
.*/
17-
.eslintcache
18-
19-
# ember-try
20-
/.node_modules.ember-try/
21-
/bower.json.ember-try
22-
/package.json.ember-try
23-
24-

.eslintrc.cjs

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
'use strict';
2+
3+
module.exports = {
4+
root: true,
5+
parser: '@typescript-eslint/parser',
6+
parserOptions: {
7+
ecmaVersion: 'latest',
8+
},
9+
plugins: ['ember'],
10+
extends: [
11+
'eslint:recommended',
12+
'plugin:ember/recommended',
13+
'plugin:prettier/recommended',
14+
],
15+
env: {
16+
browser: true,
17+
},
18+
rules: {},
19+
overrides: [
20+
// ts files
21+
{
22+
files: ['**/*.ts', '**/*.gts'],
23+
extends: [
24+
'plugin:@typescript-eslint/eslint-recommended',
25+
'plugin:@typescript-eslint/recommended',
26+
],
27+
rules: {
28+
// Add any custom rules here
29+
},
30+
},
31+
// node files
32+
{
33+
files: [
34+
'./.eslintrc.cjs',
35+
'./.prettierrc.cjs',
36+
'./.template-lintrc.cjs',
37+
'./addon-main.cjs',
38+
],
39+
parserOptions: {
40+
sourceType: 'script',
41+
},
42+
env: {
43+
browser: false,
44+
node: true,
45+
},
46+
plugins: ['n'],
47+
extends: ['plugin:n/recommended'],
48+
},
49+
{
50+
files: ['./tests/type-tests/**'],
51+
rules: {
52+
'@typescript-eslint/ban-ts-comment': 'off',
53+
},
54+
},
55+
],
56+
};

.eslintrc.js

-55
This file was deleted.

.github/workflows/ci-build.yml

-122
This file was deleted.

.github/workflows/ci.yml

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- master
8+
pull_request: {}
9+
10+
concurrency:
11+
group: ci-${{ github.head_ref || github.ref }}
12+
cancel-in-progress: true
13+
14+
jobs:
15+
test:
16+
name: "Tests"
17+
runs-on: ubuntu-latest
18+
19+
steps:
20+
- uses: actions/checkout@v4
21+
- uses: pnpm/action-setup@v3
22+
with:
23+
version: 8
24+
- uses: actions/setup-node@v4
25+
with:
26+
node-version: 18
27+
cache: pnpm
28+
- name: Install Dependencies
29+
run: pnpm install --frozen-lockfile
30+
- run: pnpm build
31+
- name: Lint
32+
run: pnpm lint
33+
- name: Run Tests
34+
run: pnpm test
35+
36+
floating:
37+
name: "Floating Dependencies"
38+
runs-on: ubuntu-latest
39+
40+
steps:
41+
- uses: actions/checkout@v4
42+
- uses: pnpm/action-setup@v3
43+
with:
44+
version: 8
45+
- uses: actions/setup-node@v4
46+
with:
47+
node-version: 18
48+
cache: pnpm
49+
- name: Install Dependencies
50+
run: pnpm install --no-lockfile
51+
- run: pnpm build
52+
- name: Run Tests
53+
run: pnpm test
54+
55+
types-scenarios:
56+
name: "Types: ${{ matrix.tsVersion }}"
57+
runs-on: ubuntu-latest
58+
needs: test
59+
60+
strategy:
61+
matrix:
62+
tsVersion:
63+
- '~5.0'
64+
- '~5.1'
65+
- '~5.2'
66+
- '~5.3'
67+
- 'beta'
68+
steps:
69+
- uses: actions/checkout@v4
70+
- uses: pnpm/action-setup@v3
71+
with:
72+
version: 8
73+
- uses: actions/setup-node@v4
74+
with:
75+
node-version: 18
76+
cache: pnpm
77+
- name: Install Dependencies
78+
run: pnpm install --frozen-lockfile
79+
- run: pnpm build
80+
- name: Swap TS Version
81+
run: pnpm add --save-dev typescript@${{ matrix.tsVersion }} --workspace-root
82+
- name: Check Types
83+
run: |
84+
pnpm tsc -v
85+
pnpm test:types

.github/workflows/push-dist.yml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Because this library needs to be built,
2+
# we can't easily point package.json files at the git repo for easy cross-repo testing.
3+
#
4+
# This workflow brings back that capability by placing the compiled assets on a "dist" branch
5+
# (configurable via the "branch" option below)
6+
name: Push dist
7+
8+
on:
9+
push:
10+
branches:
11+
- main
12+
- master
13+
14+
jobs:
15+
push-dist:
16+
name: Push dist
17+
runs-on: ubuntu-latest
18+
steps:
19+
- uses: actions/checkout@v4
20+
- uses: pnpm/action-setup@v3
21+
with:
22+
version: 8
23+
- uses: actions/setup-node@v4
24+
with:
25+
node-version: 18
26+
cache: pnpm
27+
- name: Install Dependencies
28+
run: pnpm install --frozen-lockfile
29+
- uses: kategengler/put-built-npm-package-contents-on-branch@v2.0.0
30+
with:
31+
branch: dist
32+
token: ${{ secrets.GITHUB_TOKEN }}
33+
working-directory: 'ember-string'

0 commit comments

Comments
 (0)